From eaa768fe797091389a224e76fc435f7d4a47da54 Mon Sep 17 00:00:00 2001 From: FosterProgramming Date: Wed, 12 Nov 2025 22:22:57 +0100 Subject: [PATCH] Fix match call regression (#8227) Co-authored-by: Bassoonian --- src/trainer_see.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trainer_see.c b/src/trainer_see.c index 2ec23dfa4f..348ec14c2d 100644 --- a/src/trainer_see.c +++ b/src/trainer_see.c @@ -474,7 +474,7 @@ static u8 CheckTrainer(u8 objectEventId) if (GetTrainerFlagFromScriptPointer(trainerBattlePtr)) { //If there is a rematch, we want to trigger the approach sequence - if (GetRematchFromScriptPointer(trainerBattlePtr)) + if (I_VS_SEEKER_CHARGING && GetRematchFromScriptPointer(trainerBattlePtr)) { trainerBattlePtr = NULL; numTrainers = 0xFF;