Skip to content

Commit 1e949ac

Browse files
committed
fix
1 parent 2fdfd7c commit 1e949ac

12 files changed

+21
-6
lines changed

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# 1.7.9(3)
1+
# 1.7.9(4)
22

33
- Removed Comment Emojis integration to fix lag
44
- Improved Performance
55
- Fixed Toggling Show Hitboxes not working sometimes
66
- Updated outdated strings
77
- Changed default open animation to scale cuz it looks nicer
88
- Removed not very nice message from github readme
9+
- Fixed crash opening language select caused by other developer update
910
- Added **Noclip SFX on Death**
1011

1112
# 1.7.8

mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"geode": "4.4.0",
3-
"version": "v1.7.93",
3+
"version": "v1.7.94",
44
"gd": {
55
"win": "2.2074",
66
"android": "2.2074",

src/Client/Types/ColourPickModule.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ ColourModule::ColourModule(std::string name, std::string id, ccColor3B def)
4343
this->def = def;
4444

4545
this->load();
46+
47+
addToCache();
4648
}
4749

4850
void ColourModule::save()

src/Client/Types/DropdownModule.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ DropdownModule::DropdownModule(std::vector<std::string> stuff, std::string id, i
2828
this->content = stuff;
2929

3030
this->load();
31+
32+
addToCache();
3133
}
3234

3335
void DropdownModule::save()

src/Client/Types/FontModule.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ FontModule::FontModule(std::string id)
77
font = "bigFont.fnt";
88

99
load();
10+
11+
addToCache();
1012
}
1113

1214
void FontModule::save()

src/Client/Types/InputModule.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ InputModule::InputModule(std::string name, std::string id, std::string def)
8989
this->text = def;
9090

9191
this->load();
92+
93+
addToCache();
9294
}
9395

9496
void InputModule::save()

src/Client/Types/SFXModule.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ SFXModule::SFXModule(std::string name, std::string id)
99
this->id = id;
1010

1111
load();
12+
13+
addToCache();
1214
}
1315

1416
void SFXModule::save()

src/Client/Types/SetValueModule.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ SetValueModule::SetValueModule(std::string name, std::string id)
161161
{
162162
this->name = name;
163163
this->id = id;
164+
165+
addToCache();
164166
}
165167

166168
void SetValueModule::save() { }

src/Client/Types/SliderModule.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ SliderModule::SliderModule(std::string name, std::string id, float def)
4141
value = def;
4242

4343
this->load();
44+
45+
addToCache();
4446
}
4547

4648
void SliderModule::save()

src/Client/Types/SmartStartposUI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
SmartStartposUIModule::SmartStartposUIModule()
44
{
5-
5+
addToCache();
66
}
77

88
void SmartStartposUIModule::makeAndroid(CCNode* menuu, CCPoint pos)

0 commit comments

Comments
 (0)