We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2536a5a commit 9d2a188Copy full SHA for 9d2a188
changelog.md
@@ -2,7 +2,6 @@
2
3
- Fixed infamous all modes platformer crash
4
- Fixed Hitbox Trail saving the trail when show hitboxes is disabled
5
-- Fixed Show Hitboxes not working if prism menu is enabled
6
- Fixed incompatibility with XDBot rewrite
7
- Lowered Max Hitbox Trail count to 200 instead of 500 for performance reasons
8
- Added **Decimals to Best Run**
src/Hacks/ShowHitboxes.cpp
@@ -23,7 +23,7 @@ class $modify (PlayLayer)
23
if (!m_debugDrawNode)
24
return;
25
26
- bool shouldVis = m_debugDrawNode->isVisible();
+ bool shouldVis = GameManager::sharedState()->getGameVariable("0166") && m_isPracticeMode;
27
28
if (!m_fields->mod)
29
m_fields->mod = Client::GetModule("show-hitboxes");
0 commit comments