From 9f4317bf45c4f4b9e7e03ddcae08945abf9eef30 Mon Sep 17 00:00:00 2001 From: Agetian Date: Sun, 19 Feb 2017 05:05:02 +0000 Subject: [PATCH] - Ensure that the card state view is updated when a creature with Suspend ETBs/LTBs (this fixes the summoning sickness icon still visible on a creature with Haste-from-Suspend). --- forge-game/src/main/java/forge/game/GameAction.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/forge-game/src/main/java/forge/game/GameAction.java b/forge-game/src/main/java/forge/game/GameAction.java index 3459a6557f8..07549b0398c 100644 --- a/forge-game/src/main/java/forge/game/GameAction.java +++ b/forge-game/src/main/java/forge/game/GameAction.java @@ -1334,6 +1334,7 @@ public class GameAction { public void run() { if (c.isInPlay() && c.isCreature()) { c.addExtrinsicKeyword("Haste"); + c.updateStateForView(); } } // execute() }; @@ -1348,6 +1349,7 @@ public class GameAction { if (c.getSVar("HasteFromSuspend").equals("True")) { c.setSVar("HasteFromSuspend", "False"); c.removeExtrinsicKeyword("Haste"); + c.updateStateForView(); } } // execute() };