diff options
Diffstat (limited to 'Hard-coded-logic.md')
-rw-r--r-- | Hard-coded-logic.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Hard-coded-logic.md b/Hard-coded-logic.md index c1c067a..bf3c13c 100644 --- a/Hard-coded-logic.md +++ b/Hard-coded-logic.md @@ -275,7 +275,7 @@ This is caused by `PlaceEnemysName` in [home/text.asm](../blob/master/home/text. ## Vital Throw always goes last -Most move effects' priorities are specified in `MoveEffectPriorities` in [data/moves/effects_priorities.asm](../blob/master/data/moves/effects_priorities.asm). +Most move effects' priorities are specified in `MoveEffectPriorities` in [data/moves/effects_priorities.asm](../blob/master/data/moves/effects_priorities.asm). ...except for Vital Throw. This move shares its effect with a lot of other moves, and they couldn't be bothered to make a new move effect ID for it like `EFFECT_PRIORITY_HIT`, so they hard-coded this case, in `GetMovePriority` of [engine/battle/core.asm](../blob/master/engine/battle/core.asm): ```asm |