diff options
author | Astatin <[email protected]> | 2025-02-18 19:03:42 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-02-18 19:03:42 +0900 |
commit | 18d7d064daf704193f8dff6b2ef3ae68b7fc3aac (patch) | |
tree | 9af417ec9a09294edec8ca0e5ffbd146a0081b4b /map | |
parent | f4197f6117b7cc16873fca749c0dcb838577a7e5 (diff) |
Did a bunch of things I honestly don't remember everything but now basic attack is broken
Diffstat (limited to 'map')
-rw-r--r-- | map/objects.gbasm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/map/objects.gbasm b/map/objects.gbasm index edf276f..dd89e87 100644 --- a/map/objects.gbasm +++ b/map/objects.gbasm @@ -165,8 +165,11 @@ Heal_Action: LD A, $mem_bunny_y LD C, A LD A, $01 + PUSH DE LD E, $20 + LD D, $00 CALL =Try_Launch_Animation + POP DE POP BC LD (HL), $00 @@ -188,8 +191,11 @@ Restore_EP_Action: LD A, $mem_bunny_y LD C, A LD A, $01 + PUSH DE LD E, $20 + LD D, $00 CALL =Try_Launch_Animation + POP DE POP BC LD (HL), $00 |