This commit is contained in:
Maxmtg
2013-05-27 16:17:15 +00:00
parent cc921eb269
commit cff508665b
2 changed files with 1 additions and 3 deletions

View File

@@ -219,7 +219,6 @@ public class HumanPlay {
} }
} }
boolean x = sa.getSourceCard().getManaCost().getShardCount(ManaCostShard.X) > 0; boolean x = sa.getSourceCard().getManaCost().getShardCount(ManaCostShard.X) > 0;
game.getStack().add(sa, x); game.getStack().add(sa, x);
} }
} }

View File

@@ -40,7 +40,6 @@ import forge.CardCharacteristicName;
import forge.CardLists; import forge.CardLists;
import forge.CardPredicates; import forge.CardPredicates;
import forge.CounterType; import forge.CounterType;
import forge.FThreads;
import forge.Singletons; import forge.Singletons;
import forge.card.spellability.AbilityManaPart; import forge.card.spellability.AbilityManaPart;
import forge.card.spellability.SpellAbility; import forge.card.spellability.SpellAbility;
@@ -433,7 +432,7 @@ public final class GuiDisplayUtil {
// Human player is choosing targets for an ability controlled by chosen player. // Human player is choosing targets for an ability controlled by chosen player.
sa.setActivatingPlayer(p); sa.setActivatingPlayer(p);
HumanPlay.playSaWithoutPayingManaCost(game, sa); HumanPlay.playSaWithoutPayingManaCost(game, sa);
game.getInputQueue().updateObservers(); game.getInputQueue().updateObservers(); // priority can be on AI side, need this update for that case
} }
}); });
} }