mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Dev mode: do not ask about summoning sickness for creatures with inherent Haste.
This commit is contained in:
@@ -2165,8 +2165,12 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont
|
||||
if (forgeCard.isPermanent() && !forgeCard.isAura()) {
|
||||
if (forgeCard.isCreature()) {
|
||||
if (!repeatLast) {
|
||||
lastSummoningSickness = getGui().confirm(forgeCard.getView(),
|
||||
TextUtil.concatWithSpace("Should", forgeCard.toString(), "be affected with Summoning Sickness?"));
|
||||
if (forgeCard.hasKeyword("Haste")) {
|
||||
lastSummoningSickness = true;
|
||||
} else {
|
||||
lastSummoningSickness = getGui().confirm(forgeCard.getView(),
|
||||
TextUtil.concatWithSpace("Should", forgeCard.toString(), "be affected with Summoning Sickness?"));
|
||||
}
|
||||
}
|
||||
}
|
||||
game.getAction().moveTo(targetZone, forgeCard, null);
|
||||
|
||||
Reference in New Issue
Block a user