[M11] fix Knight Exemplar giving itself indestructible

This commit is contained in:
theelk801 2023-04-28 08:20:37 -04:00
parent 075a688532
commit d1f6bd1301

View file

@ -40,7 +40,7 @@ public final class KnightExemplar extends CardImpl {
1, 1, Duration.WhileOnBattlefield, filter, true 1, 1, Duration.WhileOnBattlefield, filter, true
)); ));
ability.addEffect(new GainAbilityControlledEffect( ability.addEffect(new GainAbilityControlledEffect(
IndestructibleAbility.getInstance(), Duration.WhileOnBattlefield, filter, false IndestructibleAbility.getInstance(), Duration.WhileOnBattlefield, filter, true
).setText("and have indestructible")); ).setText("and have indestructible"));
this.addAbility(ability); this.addAbility(ability);
} }