From f740e1dd724d3acef802f116eba4e73b5bd1c8d1 Mon Sep 17 00:00:00 2001 From: hp3721 <44118666+hp3721@users.noreply.github.com> Date: Thu, 14 Apr 2022 20:36:01 -0500 Subject: [PATCH] Fixed rebattling BDSP trainers (#3481) --- PKHeX.Core/Saves/Substructures/Gen8/BS/BattleTrainerStatus8b.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/Substructures/Gen8/BS/BattleTrainerStatus8b.cs b/PKHeX.Core/Saves/Substructures/Gen8/BS/BattleTrainerStatus8b.cs index 71bbacc96..77421196b 100644 --- a/PKHeX.Core/Saves/Substructures/Gen8/BS/BattleTrainerStatus8b.cs +++ b/PKHeX.Core/Saves/Substructures/Gen8/BS/BattleTrainerStatus8b.cs @@ -39,7 +39,7 @@ public void RebattleAll() { for (int i = 0; i < COUNT_TRAINER; i++) { - SetIsWin(i, true); + SetIsWin(i, false); SetIsBattleSearcher(i, true); } }