diff options
author | Astatin <[email protected]> | 2025-05-15 15:42:26 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-05-15 15:42:26 +0200 |
commit | a1dad7db479d8203df30a649a688f7351b667d8e (patch) | |
tree | 66c878c78365d87f7b37a2ea506c1e1979e0d536 /playerattacks.gbasm | |
parent | ef9de76cd0bc313385b7edac3659e03ab36d3c1e (diff) |
Fix some bugs owl found
Diffstat (limited to 'playerattacks.gbasm')
-rw-r--r-- | playerattacks.gbasm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/playerattacks.gbasm b/playerattacks.gbasm index 1d937b9..4847c4c 100644 --- a/playerattacks.gbasm +++ b/playerattacks.gbasm @@ -36,9 +36,12 @@ Canceled_Attack: ADD $13 LD L, A Reset_Entities_Animations.loop: - LD A, (HL) - AND $07 - LD (HL), A + RES 3, (HL) + LD A, L + AND $f0 + ADD $0a + LD L, A + LD (HL), $00 Reset_Entities_Animations.loop.next: LD A, L AND $f0 |