mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 03:55:11 +00:00
Small fix to peach move
This commit is contained in:
parent
0991503b6a
commit
b2042864dc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue