From ca410ee53b038b65376a94ac7ced354f50a7a638 Mon Sep 17 00:00:00 2001 From: JappaWakka Date: Thu, 23 Feb 2023 12:09:22 +0100 Subject: [PATCH] Fix Protean ability --- P3D/Battle/BattleSystemV2/Battle.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/P3D/Battle/BattleSystemV2/Battle.vb b/P3D/Battle/BattleSystemV2/Battle.vb index 1582cca42..6d01fdd03 100644 --- a/P3D/Battle/BattleSystemV2/Battle.vb +++ b/P3D/Battle/BattleSystemV2/Battle.vb @@ -2006,7 +2006,7 @@ 'Protean Ability: If p.Ability.Name.ToLower() = "protean" Then - If p.Type1.Type <> moveUsed.Type.Type Then + If p.Type1.Type <> moveUsed.Type.Type OrElse p.Type2.Type <> Element.Types.Blank Then If p.OriginalType1 Is Nothing Then p.OriginalType1 = New Element(p.Type1.Type) End If