From 678cd35fde87bdb2aefcbe9cea0309f2df2028fd Mon Sep 17 00:00:00 2001 From: JappaWakka Date: Sun, 15 Jan 2023 09:58:30 +0100 Subject: [PATCH] Forgot a period in the exp. share name --- P3D/Battle/BattleSystemV2/Battle.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/P3D/Battle/BattleSystemV2/Battle.vb b/P3D/Battle/BattleSystemV2/Battle.vb index c0b75f6cc..7bb0f559b 100644 --- a/P3D/Battle/BattleSystemV2/Battle.vb +++ b/P3D/Battle/BattleSystemV2/Battle.vb @@ -8114,7 +8114,7 @@ Next For i = 0 To Core.Player.Pokemons.Count - 1 - If expPokemon.Contains(i) = False And Not Core.Player.Pokemons(i).Item Is Nothing AndAlso Core.Player.Pokemons(i).Item.OriginalName.ToLower() = "exp share" AndAlso Core.Player.Pokemons(i).Status <> Pokemon.StatusProblems.Fainted AndAlso Core.Player.Pokemons(i).IsEgg() = False Then + If expPokemon.Contains(i) = False And Not Core.Player.Pokemons(i).Item Is Nothing AndAlso Core.Player.Pokemons(i).Item.OriginalName.ToLower() = "exp. share" AndAlso Core.Player.Pokemons(i).Status <> Pokemon.StatusProblems.Fainted AndAlso Core.Player.Pokemons(i).IsEgg() = False Then expPokemon.Add(i) End If Next