Skip to content

Commit 81e3755

Browse files
committed
i literally hate myself so fucking much how could i have made such a small fucking mistake that affects everyone
1 parent 9c0bb7e commit 81e3755

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 1.8.0
22

33
- Added **iOS Support**
4+
- Fixed Show Hitboxes always being on
45

56
# 1.7.9(8)
67

src/Client/Module.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ class Module : public UIComponent
3939

4040
std::vector<Module*> options = {};
4141

42-
std::string name;
43-
std::string id;
44-
std::string description;
45-
std::string alert;
46-
std::string inCompAlert;
47-
bool enabled;
48-
bool useAlert;
49-
bool onceAlert;
50-
bool isInComp;
42+
std::string name = "";
43+
std::string id = "";
44+
std::string description = "";
45+
std::string alert = "";
46+
std::string inCompAlert = "";
47+
bool enabled = false;
48+
bool useAlert = false;
49+
bool onceAlert = false;
50+
bool isInComp = false;
5151

52-
KeyStruct keybind;
52+
KeyStruct keybind = {};
5353

54-
bool vAlert;
54+
bool vAlert = false;
5555

56-
bool def;
56+
bool def = false;
5757
float value = 1.0f;
5858

5959
bool mouseHeldDown = false;

0 commit comments

Comments
 (0)