Skip to content

Commit d323aa8

Browse files
jordanmoore753mid-kid
authored andcommitted
Rename checkcurl to checkrollout
1 parent cbfd48b commit d323aa8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

data/battle/effect_command_pointers.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ BattleCommandPointers:
9595
dw BattleCommand_PerishSong
9696
dw BattleCommand_StartSandstorm
9797
dw BattleCommand_Endure
98-
dw BattleCommand_CheckCurl
98+
dw BattleCommand_CheckRollout
9999
dw BattleCommand_RolloutPower
100100
dw BattleCommand_Unused5D
101101
dw BattleCommand_FuryCutter

data/moves/effects.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1536,7 +1536,7 @@ Endure:
15361536
endmove
15371537

15381538
Rollout:
1539-
checkcurl
1539+
checkrollout
15401540
checkobedience
15411541
doturn
15421542
usedmovetext

docs/move_effect_commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ Defined in [macros/scripts/battle_commands.asm](https://github.com/pret/pokecrys
273273
## `$5A`: `endure`
274274

275275

276-
## `$5B`: `checkcurl`
276+
## `$5B`: `checkrollout`
277277

278278

279279
## `$5C`: `rolloutpower`

engine/battle/move_effects/rollout.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DEF MAX_ROLLOUT_COUNT EQU 5
22

3-
BattleCommand_CheckCurl:
3+
BattleCommand_CheckRollout:
44
ld de, wPlayerRolloutCount
55
ldh a, [hBattleTurn]
66
and a

macros/scripts/battle_commands.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ ENDM
9595
command perishsong ; 58
9696
command startsandstorm ; 59
9797
command endure ; 5a
98-
command checkcurl ; 5b
98+
command checkrollout ; 5b
9999
command rolloutpower ; 5c
100100
command effect0x5d ; 5d
101101
command furycutter ; 5e

0 commit comments

Comments
 (0)