We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66f2062 commit 0549ee0Copy full SHA for 0549ee0
src/Hacks/Global.cpp
@@ -26,7 +26,7 @@ class $modify(GameStatsManager) {
26
class $modify(CCScheduler) {
27
void update(float dt) {
28
HackItem* speedhack = Hacks::getHack("Speedhack");
29
- speedhack->value.floatValue = std::max(m_hack->value.floatValue, 0.01f);
+ speedhack->value.floatValue = std::max(speedhack->value.floatValue, 0.01f);
30
if (speedhack == nullptr) return CCScheduler::update(dt);
31
if (speedhack->value.floatValue == 1.0F) return CCScheduler::update(dt);
32
CCScheduler::update(dt * speedhack->value.floatValue);
0 commit comments