Fix test not referencing AI_TRAINER_NAME (#6926)

This commit is contained in:
Pawkkie 2025-05-20 01:17:46 -04:00 committed by GitHub
parent 100121ad06
commit 3f89abea74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,11 +97,11 @@ AI_DOUBLE_BATTLE_TEST("AI will not try to switch for the same pokemon for 2 spot
} WHEN {
TURN { EXPECT_SWITCH(opponentLeft, 3); };
} SCENE {
MESSAGE("{PKMN} TRAINER LEAF withdrew Linoone!");
MESSAGE("{PKMN} TRAINER LEAF sent out Gengar!");
MESSAGE(AI_TRAINER_NAME " withdrew Linoone!");
MESSAGE(AI_TRAINER_NAME " sent out Gengar!");
NONE_OF {
MESSAGE("{PKMN} TRAINER LEAF withdrew Zigzagoon!");
MESSAGE("{PKMN} TRAINER LEAF sent out Gengar!");
MESSAGE(AI_TRAINER_NAME " withdrew Zigzagoon!");
MESSAGE(AI_TRAINER_NAME " sent out Gengar!");
}
}
}