aboutsummaryrefslogtreecommitdiffstats
path: root/engine/battle/core.asm
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2025-06-03 23:48:35 -0500
committerdannye <33dannye@gmail.com>2025-06-03 23:48:35 -0500
commitfd043a66c2096343d0ce9cb4aec89b20743ef89f (patch)
treeb941b70b4e505df60ee19432acbd06f7c68ba507 /engine/battle/core.asm
parentAdd a `CANNOT_MOVE` constant (#508) (diff)
downloadpokeyellow-fd043a66c2096343d0ce9cb4aec89b20743ef89f.tar.gz
pokeyellow-fd043a66c2096343d0ce9cb4aec89b20743ef89f.tar.xz
pokeyellow-fd043a66c2096343d0ce9cb4aec89b20743ef89f.zip
Fix typos
Diffstat (limited to 'engine/battle/core.asm')
-rw-r--r--engine/battle/core.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm
index c833fc71..8aa27cce 100644
--- a/engine/battle/core.asm
+++ b/engine/battle/core.asm
@@ -2375,10 +2375,10 @@ PartyMenuOrRockOrRun:
jr nz, .doEnemyMonAnimation
; enemy mon doesn't have substitute
ld a, [wEnemyMonMinimized]
- and a ; has the enemy mon used Minimise?
+ and a ; has the enemy mon used Minimize?
ld hl, AnimationMinimizeMon
jr nz, .doEnemyMonAnimation
-; enemy mon is not minimised
+; enemy mon is not minimized
ld a, [wEnemyMonSpecies]
ld [wCurPartySpecies], a
ld [wCurSpecies], a
@@ -2994,7 +2994,7 @@ SelectEnemyMove:
pop hl
jr z, .chooseRandomMove ; move disabled, try again
and a
- jr z, .chooseRandomMove ; move non-existant, try again
+ jr z, .chooseRandomMove ; move non-existent, try again
.done
ld [wEnemySelectedMove], a
ret