mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- 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:
@@ -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()
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user