mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
More [CS] Extra Characters fixes
This commit is contained in:
parent
2f8654708a
commit
cc9154a16f
2 changed files with 2 additions and 2 deletions
|
|
@ -192,7 +192,7 @@ function daisy_update(m)
|
||||||
smlua_anim_util_set_animation(m.marioObj, anim)
|
smlua_anim_util_set_animation(m.marioObj, anim)
|
||||||
end
|
end
|
||||||
|
|
||||||
if (m.input & INPUT_A_PRESSED) ~= 0 and m.vel.y < 10 and (
|
if (m.input & INPUT_A_PRESSED) ~= 0 and m.vel.y < 10 and m.prevAction ~= ACT_DAISY_JUMP and (
|
||||||
m.action == ACT_JUMP or
|
m.action == ACT_JUMP or
|
||||||
m.action == ACT_DOUBLE_JUMP or
|
m.action == ACT_DOUBLE_JUMP or
|
||||||
m.action == ACT_TRIPLE_JUMP or
|
m.action == ACT_TRIPLE_JUMP or
|
||||||
|
|
|
||||||
|
|
@ -196,7 +196,7 @@ function peach_update(m)
|
||||||
smlua_anim_util_set_animation(m.marioObj, anim)
|
smlua_anim_util_set_animation(m.marioObj, anim)
|
||||||
end
|
end
|
||||||
|
|
||||||
if (m.input & INPUT_A_DOWN) ~= 0 and m.vel.y < -15 and (
|
if (m.input & INPUT_A_DOWN) ~= 0 and m.vel.y < -15 and m.prevAction ~= ACT_PEACH_FLOAT and (
|
||||||
m.action == ACT_JUMP or
|
m.action == ACT_JUMP or
|
||||||
m.action == ACT_DOUBLE_JUMP or
|
m.action == ACT_DOUBLE_JUMP or
|
||||||
m.action == ACT_TRIPLE_JUMP or
|
m.action == ACT_TRIPLE_JUMP or
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue