diff options
author | Astatin <[email protected]> | 2025-08-29 21:43:19 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-08-29 21:43:19 +0200 |
commit | 312fad238b2f0dfcb904b572e545dd85984167d8 (patch) | |
tree | f8911b67b8c4df7ee7dd224efadbda307f87b0ff | |
parent | 48a1ae254129527251bed0fbf2a01bef46f5ae52 (diff) |
Fix poison attack previous status check (same as the freeze one a couple of commits ago)
-rw-r--r-- | enemiesattacks/poison.gbasm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enemiesattacks/poison.gbasm b/enemiesattacks/poison.gbasm index b2af90e..795ba06 100644 --- a/enemiesattacks/poison.gbasm +++ b/enemiesattacks/poison.gbasm @@ -56,7 +56,7 @@ Poison_Enemy_Attack: ; Direction to face in E. Result in BC (XY), Direction in D POP BC RET Z - LD A, $mem_bunny_flags + LD A, $mem_bunny_status CP $00 RET NZ |