From b88ce2619f4a41ea3b20308b9a0a3ba7a7f8ea03 Mon Sep 17 00:00:00 2001 From: CaptainSegis Date: Sun, 12 Feb 2017 18:55:39 -0500 Subject: [PATCH] Fixed minor BattleScreen index issue --- 2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb b/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb index 433e12500..103b76058 100644 --- a/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb +++ b/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb @@ -219,6 +219,7 @@ End If Next Me.OwnPokemon = Core.Player.Pokemons(meIndex) + OwnPokemonIndex = meIndex Me.IsTrainerBattle = False Me.ParticipatedPokemon.Add(meIndex) @@ -352,6 +353,7 @@ End If Next Me.OwnPokemon = Core.Player.Pokemons(meIndex) + OwnPokemonIndex = meIndex If IsPVPBattle Then OwnPokemon = Core.Player.Pokemons(OwnLeadIndex) OwnPokemonIndex = OwnLeadIndex @@ -498,6 +500,7 @@ End If Next Me.OwnPokemon = Core.Player.Pokemons(meIndex) + OwnPokemonIndex = meIndex Me.IsTrainerBattle = False Me.ParticipatedPokemon.Add(meIndex) @@ -614,6 +617,8 @@ End If Next Me.OwnPokemon = Core.Player.Pokemons(meIndex) + OwnPokemonIndex = meIndex + Me.IsTrainerBattle = False Me.ParticipatedPokemon.Add(meIndex)