Fix faint Pokémon message showing twice

This commit is contained in:
JappaWakka 2023-02-27 20:01:28 +01:00
parent 611e9688b9
commit ffefa421c4
1 changed files with 1 additions and 1 deletions

View File

@ -4531,7 +4531,7 @@
End If
End If
End If
If p.HP <= 0 And cause.Contains("move:") = False Then
If p.HP <= 0 And cause.StartsWith("move:") = False And cause.Contains("battledamage") = False Then
FaintPokemon(own, BattleScreen, "")
End If
End Sub