diff --git a/P3D/Battle/BattleSystemV2/BattleCalculation.vb b/P3D/Battle/BattleSystemV2/BattleCalculation.vb index f431a72cc..05a86caf8 100644 --- a/P3D/Battle/BattleSystemV2/BattleCalculation.vb +++ b/P3D/Battle/BattleSystemV2/BattleCalculation.vb @@ -76,11 +76,11 @@ End If 'Added condition to check for full HP - If ownPokemon.Ability.Name.ToLower() = "gale wings" And ownAttack.Type.Type = Element.Types.Flying And p.HP = p.MaxHP Then + If ownPokemon.Ability.Name.ToLower() = "gale wings" And ownAttack.Type.Type = Element.Types.Flying And ownPokemon.HP = ownPokemon.MaxHP Then ownPriority += 1 End If - If oppPokemon.Ability.Name.ToLower() = "gale wings" And oppAttack.Type.Type = Element.Types.Flying And Op.HP = Op.MaxHP Then + If oppPokemon.Ability.Name.ToLower() = "gale wings" And oppAttack.Type.Type = Element.Types.Flying And oppPokemon.HP = oppPokemon.MaxHP Then oppPriority += 1 End If diff --git a/lib/build/Content/Fonts/BMP/miniFont.xnb b/lib/build/Content/Fonts/BMP/miniFont.xnb index 3c123710c..bcfb21f81 100644 Binary files a/lib/build/Content/Fonts/BMP/miniFont.xnb and b/lib/build/Content/Fonts/BMP/miniFont.xnb differ diff --git a/lib/build/GameDevCommon.dll b/lib/build/GameDevCommon.dll index 559eaeacd..f5e9a3122 100644 Binary files a/lib/build/GameDevCommon.dll and b/lib/build/GameDevCommon.dll differ diff --git a/lib/build/Pokemon3D.exe b/lib/build/Pokemon3D.exe index df39c6e89..e48d8864d 100644 Binary files a/lib/build/Pokemon3D.exe and b/lib/build/Pokemon3D.exe differ