Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Aug 29, 2024
1 parent 2536a5a commit 9d2a188
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

- Fixed infamous all modes platformer crash
- Fixed Hitbox Trail saving the trail when show hitboxes is disabled
- Fixed Show Hitboxes not working if prism menu is enabled
- Fixed incompatibility with XDBot rewrite
- Lowered Max Hitbox Trail count to 200 instead of 500 for performance reasons
- Added **Decimals to Best Run**
Expand Down
2 changes: 1 addition & 1 deletion src/Hacks/ShowHitboxes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class $modify (PlayLayer)
if (!m_debugDrawNode)
return;

bool shouldVis = m_debugDrawNode->isVisible();
bool shouldVis = GameManager::sharedState()->getGameVariable("0166") && m_isPracticeMode;

if (!m_fields->mod)
m_fields->mod = Client::GetModule("show-hitboxes");
Expand Down

0 comments on commit 9d2a188

Please sign in to comment.