diff --git a/changelog.md b/changelog.md index a6a423f..7d02927 100644 --- a/changelog.md +++ b/changelog.md @@ -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** diff --git a/src/Hacks/ShowHitboxes.cpp b/src/Hacks/ShowHitboxes.cpp index 627bade..3d161d3 100644 --- a/src/Hacks/ShowHitboxes.cpp +++ b/src/Hacks/ShowHitboxes.cpp @@ -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");