mirror of
https://github.com/pret/pokeemerald.git
synced 2026-05-05 21:07:17 -05:00
Fix TRAINER_TYPE_SEE_ALL_DIRECTIONS (#7779)
This commit is contained in:
parent
1d11a2cb0a
commit
4963c4317c
|
|
@ -373,7 +373,7 @@ bool8 CheckForTrainersWantingBattle(void)
|
|||
|
||||
if (!gObjectEvents[i].active)
|
||||
continue;
|
||||
if (gObjectEvents[i].trainerType != TRAINER_TYPE_NORMAL && gObjectEvents[i].trainerType != TRAINER_TYPE_BURIED)
|
||||
if (gObjectEvents[i].trainerType != TRAINER_TYPE_NORMAL && gObjectEvents[i].trainerType != TRAINER_TYPE_SEE_ALL_DIRECTIONS && gObjectEvents[i].trainerType != TRAINER_TYPE_BURIED)
|
||||
continue;
|
||||
|
||||
numTrainers = CheckTrainer(i);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user