From ed36eeb728c2c041e7a533057fd05261e36da83f Mon Sep 17 00:00:00 2001 From: Agetian Date: Wed, 7 Oct 2015 09:31:57 +0000 Subject: [PATCH] - Update the visual state of a card when adding KW Haste to ensure that the summoning sickness icon is removed from it. --- .../java/forge/game/ability/effects/ControlGainEffect.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/forge-game/src/main/java/forge/game/ability/effects/ControlGainEffect.java b/forge-game/src/main/java/forge/game/ability/effects/ControlGainEffect.java index e1d16c533f4..2a007b4e3bb 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/ControlGainEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/ControlGainEffect.java @@ -128,6 +128,9 @@ public class ControlGainEffect extends SpellAbilityEffect { if (null != kws) { for (final String kw : kws) { tgtC.addExtrinsicKeyword(kw); + if (kw.equals("Haste")) { + tgtC.updateStateForView(); // ensure that summoning sickness icon is removed + } } }