war tax implemented. propaganda combat check now looks in the command zone as well.

This commit is contained in:
RedDeckWins
2013-05-15 04:49:56 +00:00
parent 37655012ad
commit 1577f9110d
3 changed files with 14 additions and 1 deletions

View File

@@ -1063,7 +1063,7 @@ public class CombatUtil {
public static void checkPropagandaEffects(final GameState game, final Card c) {
Cost attackCost = new Cost(ManaCost.ZERO, true);
// Sort abilities to apply them in proper order
for (Card card : game.getCardsIn(ZoneType.Battlefield)) {
for (Card card : game.getCardsIn(ZoneType.listValueOf("Battlefield,Command"))) {
final ArrayList<StaticAbility> staticAbilities = card.getStaticAbilities();
for (final StaticAbility stAb : staticAbilities) {
Cost additionalCost = stAb.getAttackCost(c, game.getCombat().getDefenderByAttacker(c));