Skip to content

Commit

Permalink
yeah so this had a bug and also i just forgot to release this update??
Browse files Browse the repository at this point in the history
  • Loading branch information
undefined06855 committed Jan 17, 2025
1 parent e614a3b commit 59c1c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MenuLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void HookedMenuLayer::runEnterGameplayAnimations() {
// gets all children and if they should be moved figures out where they
// should move to and stores it in (std::map)m_fields->movedNodeMovements
for (auto& child : geode::cocos::CCArrayExt<CCNode*>(getChildren())) {
if (child->getZOrder() < m_fields->ninjaSwipeLayer->getZOrder()) continue;
if (child->getZOrder() <= m_fields->ninjaSwipeLayer->getZOrder()) continue;

// get side + move dist
cocos2d::CCPoint movement;
Expand Down

0 comments on commit 59c1c6b

Please sign in to comment.