diff --git a/Data/Scripts/011_Battle/001_Battler/007_Battler_UseMove.rb b/Data/Scripts/011_Battle/001_Battler/007_Battler_UseMove.rb index aa32fd603..fd7dd6345 100644 --- a/Data/Scripts/011_Battle/001_Battler/007_Battler_UseMove.rb +++ b/Data/Scripts/011_Battle/001_Battler/007_Battler_UseMove.rb @@ -534,7 +534,8 @@ class PokeBattle_Battler end # Dancer if !@effects[PBEffects::Dancer] && !user.lastMoveFailed && realNumHits>0 && - !move.snatched && magicCoater<0 && @battle.pbCheckGlobalAbility(:DANCER) + !move.snatched && magicCoater<0 && @battle.pbCheckGlobalAbility(:DANCER) && + move.danceMove? dancers = [] @battle.pbPriority(true).each do |b| dancers.push(b) if b.index!=user.index && b.hasActiveAbility?(:DANCER) @@ -726,4 +727,4 @@ class PokeBattle_Battler user.pbFaint if user.fainted? return true end -end \ No newline at end of file +end