diff options
author | Astatin <[email protected]> | 2025-07-09 11:16:02 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-07-09 11:16:02 +0200 |
commit | e9dc1a32f8e7199e020123e0377c665c0e1443a1 (patch) | |
tree | 72a20a8290b67414af093b8f9374125316b6932c | |
parent | 7ccc3f42244eef9385ba878f343a18852fab4dfa (diff) |
Fix bunny start moving before generation events
-rw-r--r-- | entity/bunny.gbasm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/entity/bunny.gbasm b/entity/bunny.gbasm index 7520720..928693c 100644 --- a/entity/bunny.gbasm +++ b/entity/bunny.gbasm @@ -148,6 +148,10 @@ Move_Bunny: BIT 3, A JP NZ, =.Start_action_or_movement.end + LD A, $mem_requested_mode + CP $enum_dungeon_mode + JP NZ, =.Start_action_or_movement.end + LD A, $mem_bunny_direction AND $70 LD D, A |