mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38: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.isPermanent() && !forgeCard.isAura()) {
|
||||||
if (forgeCard.isCreature()) {
|
if (forgeCard.isCreature()) {
|
||||||
if (!repeatLast) {
|
if (!repeatLast) {
|
||||||
lastSummoningSickness = getGui().confirm(forgeCard.getView(),
|
if (forgeCard.hasKeyword("Haste")) {
|
||||||
TextUtil.concatWithSpace("Should", forgeCard.toString(), "be affected with Summoning Sickness?"));
|
lastSummoningSickness = true;
|
||||||
|
} else {
|
||||||
|
lastSummoningSickness = getGui().confirm(forgeCard.getView(),
|
||||||
|
TextUtil.concatWithSpace("Should", forgeCard.toString(), "be affected with Summoning Sickness?"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
game.getAction().moveTo(targetZone, forgeCard, null);
|
game.getAction().moveTo(targetZone, forgeCard, null);
|
||||||
|
|||||||
Reference in New Issue
Block a user