Small fix to peach move

This commit is contained in:
Agent X 2024-07-02 15:53:27 -04:00
parent 0991503b6a
commit b2042864dc
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ function peach_update(m)
smlua_anim_util_set_animation(m.marioObj, anim)
end
if (m.input & INPUT_A_PRESSED) ~= 0 and m.vel.y < -15 and (
if (m.input & INPUT_A_DOWN) ~= 0 and m.vel.y < -15 and (
m.action == ACT_JUMP or
m.action == ACT_DOUBLE_JUMP or
m.action == ACT_TRIPLE_JUMP or