summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorHyperdriveguy <hyperdriveguy@gmail.com>2018-07-20 17:39:53 -0700
committerHyperdriveguy <hyperdriveguy@gmail.com>2018-07-20 17:39:53 -0700
commit57fc81d44e1f26b8895d37c9d847400851a8f8b4 (patch)
tree90e16f848e085a57ef28dbb31d4347dd8302dfea /engine
parent53bcd8f46ca4f78381af70f55d03f3180be277de (diff)
Add Counter and Mirror Coat bugfix
Diffstat (limited to 'engine')
-rw-r--r--engine/battle/move_effects/counter.asm1
-rw-r--r--engine/battle/move_effects/mirror_coat.asm1
2 files changed, 2 insertions, 0 deletions
diff --git a/engine/battle/move_effects/counter.asm b/engine/battle/move_effects/counter.asm
index b811b293c..9948ebcbd 100644
--- a/engine/battle/move_effects/counter.asm
+++ b/engine/battle/move_effects/counter.asm
@@ -36,6 +36,7 @@ BattleCommand_Counter: ; 35813
cp SPECIAL
ret nc
+ ; BUG: Move should fail with all non-damaging battle actions
ld hl, wCurDamage
ld a, [hli]
or [hl]
diff --git a/engine/battle/move_effects/mirror_coat.asm b/engine/battle/move_effects/mirror_coat.asm
index 41e296108..dcdd9c2f3 100644
--- a/engine/battle/move_effects/mirror_coat.asm
+++ b/engine/battle/move_effects/mirror_coat.asm
@@ -37,6 +37,7 @@ BattleCommand_MirrorCoat: ; 37c95
cp SPECIAL
ret c
+ ; BUG: Move should fail with all non-damaging battle actions
ld hl, wCurDamage
ld a, [hli]
or [hl]