This commit is contained in:
aozhiwei 2023-11-02 11:41:50 +08:00
parent c1f7037111
commit 888c34066e

View File

@ -188,7 +188,7 @@ void Player::InternalUpdate(int delta_time)
if (GetMovement()->IsFindPath()) {
moving = true;
}
#if 0
#if 1
if (moving) {
UpdateMoving();
}
@ -262,9 +262,11 @@ void Player::InternalUpdate(int delta_time)
if (throw_bomb) {
UpdateThrowBomb();
}
#if 0
if (moving) {
UpdateMoving();
}
#endif
}
}