diff options
author | Astatin <[email protected]> | 2025-03-13 19:51:48 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-03-13 19:51:48 +0900 |
commit | e67ddaf2d8aad828de2a993385071aebfb183340 (patch) | |
tree | 61f5fa48ee2beb56d4357ad7a2cc8d87d7400673 /enemiesattacks | |
parent | 62701690d1c7b95b639d63d0cb9cd6ebeb9ac876 (diff) |
Change the collision update from frame 5 to 9 for it to happen after basic attack execution
Diffstat (limited to 'enemiesattacks')
-rw-r--r-- | enemiesattacks/freeze.gbasm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/enemiesattacks/freeze.gbasm b/enemiesattacks/freeze.gbasm index c8abd78..eb27a48 100644 --- a/enemiesattacks/freeze.gbasm +++ b/enemiesattacks/freeze.gbasm @@ -25,6 +25,10 @@ Freeze_Enemy_Attack: ; Direction to face in E. Result in BC (XY), Direction in D LD $mem_bunny_predicted_x, A LD A, $mem_bunny_y LD $mem_bunny_predicted_y, A + + LD A, $00 + LD $mem_entity_being_attacked_low, A + CALL =Fix_Bunny_screen LD A, $04 LD $mem_bunny_status_clear_turn_counter, A |