diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-02-14 21:48:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 21:48:36 -0500 |
commit | bc4f88d72c5efd05f6dd5ee76966a1fc7c69bc3a (patch) | |
tree | 44878dcfb932d27cdd2bce7b49a23bf63a083807 /src/trainer_see.c | |
parent | 8c66bde7153cd29be3fd17dccb3fef6b09dd8ee4 (diff) | |
parent | fc623d2abf07d35579a6560fea271941b3a67c0b (diff) |
Merge pull request #391 from Deokishisu/movement_type-rename
Rename "Hidden" Movement Type to "Buried"
Diffstat (limited to 'src/trainer_see.c')
-rw-r--r-- | src/trainer_see.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trainer_see.c b/src/trainer_see.c index 5681c4344..f393c4bbd 100644 --- a/src/trainer_see.c +++ b/src/trainer_see.c @@ -317,7 +317,7 @@ static bool8 TrainerSeeFunc_WaitExclMark(u8 taskId, struct Task * task, struct O task->tFuncId++; if (trainerObj->movementType == MOVEMENT_TYPE_TREE_DISGUISE || trainerObj->movementType == MOVEMENT_TYPE_MOUNTAIN_DISGUISE) task->tFuncId = 6; - if (trainerObj->movementType == MOVEMENT_TYPE_HIDDEN) + if (trainerObj->movementType == MOVEMENT_TYPE_BURIED) task->tFuncId = 8; return TRUE; } @@ -393,7 +393,7 @@ static bool8 TrainerSeeFunc_WaitRemoveDisguise(u8 taskId, struct Task * task, st return FALSE; } -// Jump here if hidden in ash. Not used in FRLG. +// Jump here if buried in ash. Not used in FRLG. static bool8 TrainerSeeFunc_TrainerInAshFacesPlayer(u8 taskId, struct Task * task, struct ObjectEvent * trainerObj) { if (!ObjectEventIsMovementOverridden(trainerObj) |