- 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).

This commit is contained in:
Agetian
2017-02-19 05:05:02 +00:00
parent 423599eaa3
commit 9f4317bf45

View File

@@ -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()
};