1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-09-28 21:19:24 +00:00

reset ground collision check for <WAS

This commit is contained in:
dawnDus 2022-01-13 11:34:36 -05:00
parent 1f8690263b
commit d5743ac972
No known key found for this signature in database
GPG key ID: 972AABDE81848F21

View file

@ -1062,6 +1062,9 @@ impl TextScriptVM {
// Reset player interaction flag upon TRA
new_scene.player1.cond.set_interacted(false);
new_scene.player2.cond.set_interacted(false);
// Reset ground collision for WAS / WaitStanding
new_scene.player1.flags.set_hit_bottom_wall(false);
new_scene.player2.flags.set_hit_bottom_wall(false);
new_scene.frame.wait = game_scene.frame.wait;
new_scene.nikumaru = game_scene.nikumaru;