diff --git a/res/cardsfolder/m/maze_of_ith.txt b/res/cardsfolder/m/maze_of_ith.txt index 604ffc6b22c..fa7dfadb4ae 100644 --- a/res/cardsfolder/m/maze_of_ith.txt +++ b/res/cardsfolder/m/maze_of_ith.txt @@ -2,8 +2,8 @@ Name:Maze of Ith ManaCost:no cost Types:Land Text:no text -A:AB$ Untap | Cost$ T | ValidTgts$ Creature.attacking | TgtPrompt$ Select target attacking creature | SubAbility$ SVar=DBPump | IsCurse$ True | SpellDescription$ Untap target attacking creature. Prevent all combat damage that would be dealt to and dealt by that creature this turn. -SVar:DBPump:DB$Pump | Cost$ 0 | Defined$ Targeted | KW$ HIDDEN Prevent all combat damage that would be dealt to and dealt by CARDNAME. +A:AB$ Pump | Cost$ T | ValidTgts$ Creature.attacking | TgtPrompt$ Select target attacking creature | KW$ HIDDEN Prevent all combat damage that would be dealt to and dealt by CARDNAME. | SubAbility$ SVar=DBUntap | IsCurse$ True | SpellDescription$ Untap target attacking creature. Prevent all combat damage that would be dealt to and dealt by that creature this turn. +SVar:DBUntap:DB$Untap | Defined$ Targeted SVar:Rarity:Uncommon SVar:Picture:http://www.wizards.com/global/images/magic/general/maze_of_ith.jpg SetInfo:DRK|Uncommon|http://magiccards.info/scans/en/dk/114.jpg diff --git a/src/main/java/forge/card/abilityFactory/AbilityFactory_Pump.java b/src/main/java/forge/card/abilityFactory/AbilityFactory_Pump.java index 00d0969ef1b..20d99c251c3 100644 --- a/src/main/java/forge/card/abilityFactory/AbilityFactory_Pump.java +++ b/src/main/java/forge/card/abilityFactory/AbilityFactory_Pump.java @@ -274,7 +274,7 @@ public class AbilityFactory_Pump { } }); // leaves all creatures that will be destroyed } // -X/-X end - else if (!list.isEmpty()) { + else if (!list.isEmpty()) { String KWpump[] = {"none"}; if (!Keywords.get(0).equals("none")) KWpump = Keywords.toArray(new String[Keywords.size()]); @@ -409,7 +409,8 @@ public class AbilityFactory_Pump { * @return a boolean. */ private boolean pumpTgtAI(SpellAbility sa, int defense, int attack, boolean mandatory) { - if (!mandatory && AllZone.getPhase().isAfter(Constant.Phase.Combat_Declare_Blockers_InstantAbility) && !(AF.isCurse() && defense < 0)) + if (!mandatory && AllZone.getPhase().isAfter(Constant.Phase.Combat_Declare_Blockers_InstantAbility) + && !(AF.isCurse() && defense < 0)) return false; Target tgt = AF.getAbTgt();