diff --git a/PokemonBattleEngine/Battle/BattleDamage.cs b/PokemonBattleEngine/Battle/BattleDamage.cs index e30ae6a5d..0287a21df 100644 --- a/PokemonBattleEngine/Battle/BattleDamage.cs +++ b/PokemonBattleEngine/Battle/BattleDamage.cs @@ -769,7 +769,7 @@ private double CalculateBasePower(PBEBattlePokemon user, PBEBattlePokemon[] targ } case PBEWeather.Sandstorm: { - if (user.Ability == PBEAbility.SandForce && (user.HasType(PBEType.Rock) || user.HasType(PBEType.Ground) || user.HasType(PBEType.Steel))) + if (user.Ability == PBEAbility.SandForce && (moveType == PBEType.Rock || moveType == PBEType.Ground || moveType == PBEType.Steel)) { basePower *= 1.3; }