diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Fighting/Detect.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Fighting/Detect.vb index 56248b876..f42713b04 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Fighting/Detect.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Fighting/Detect.vb @@ -78,11 +78,11 @@ Public Overrides Sub MoveHits(own As Boolean, BattleScreen As BattleScreen) If own = True Then - BattleScreen.FieldEffects.OwnProtectCounter += 1 + BattleScreen.FieldEffects.OwnProtectMovesCount += 1 BattleScreen.FieldEffects.OwnDetectCounter = 1 Else - BattleScreen.FieldEffects.OppProtectCounter += 1 + BattleScreen.FieldEffects.OppProtectMovesCount += 1 BattleScreen.FieldEffects.OppDetectCounter = 1 End If @@ -96,4 +96,4 @@ End Class -End Namespace \ No newline at end of file +End Namespace