From 3174dd2b39e73911181174b4f07712f0ac2e14b9 Mon Sep 17 00:00:00 2001
From: Evan Kranzler <theelk801@gmail.com>
Date: Thu, 8 Aug 2019 08:00:13 -0400
Subject: [PATCH] fixed Commander's Insignia implementation

---
 Mage.Sets/src/mage/cards/c/CommandersInsignia.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Mage.Sets/src/mage/cards/c/CommandersInsignia.java b/Mage.Sets/src/mage/cards/c/CommandersInsignia.java
index 3b47f73db5..f8f97f3aab 100644
--- a/Mage.Sets/src/mage/cards/c/CommandersInsignia.java
+++ b/Mage.Sets/src/mage/cards/c/CommandersInsignia.java
@@ -1,6 +1,7 @@
 package mage.cards.c;
 
 import mage.abilities.Ability;
+import mage.abilities.common.SimpleStaticAbility;
 import mage.abilities.dynamicvalue.DynamicValue;
 import mage.abilities.effects.Effect;
 import mage.abilities.effects.common.continuous.BoostControlledEffect;
@@ -24,9 +25,9 @@ public final class CommandersInsignia extends CardImpl {
         super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{W}{W}");
 
         // Creatures you control get +1/+1 for each time you've cast your commander from the command zone this game.
-        this.getSpellAbility().addEffect(new BoostControlledEffect(
+        this.addAbility(new SimpleStaticAbility(new BoostControlledEffect(
                 CommandersInsigniaValue.instance, CommandersInsigniaValue.instance, Duration.WhileOnBattlefield
-        ).setText("Creatures you control get +1/+1 for each time you've cast your commander from the command zone this game."));
+        ).setText("Creatures you control get +1/+1 for each time you've cast your commander from the command zone this game.")));
     }
 
     private CommandersInsignia(final CommandersInsignia card) {