- Fixed suspended creatures not gaining haste.

This commit is contained in:
Sloth
2011-11-17 10:08:33 +00:00
parent abdbbbb315
commit cc0b85a844

View File

@@ -124,14 +124,11 @@ public class GameAction {
copied = AllZone.getCardFactory().copyCard(c); copied = AllZone.getCardFactory().copyCard(c);
lastKnownInfo = CardUtil.getLKICopy(c); lastKnownInfo = CardUtil.getLKICopy(c);
// TODO improve choices here copied.setUnearthed(c.isUnearthed());
// Certain attributes need to be copied from Hand->Stack and }
// Stack->Battlefield
// these probably can be moved back to SubtractCounters if (c.wasSuspendCast()) {
if (c.wasSuspendCast()) { copied = GameAction.addSuspendTriggers(c);
copied = GameAction.addSuspendTriggers(c);
}
copied.setUnearthed(c.isUnearthed()); // this might be unnecessary
} }
for (final Trigger trigger : c.getTriggers()) { for (final Trigger trigger : c.getTriggers()) {