- Don't use RegenerateAi abilities if it has a Target object and nothing is actually targeted

This commit is contained in:
Sol
2013-03-24 18:51:36 +00:00
parent 3ba8405959
commit 1f2ba326d3
2 changed files with 4 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
Name:Undiscovered Paradise Name:Undiscovered Paradise
ManaCost:no cost ManaCost:no cost
Types:Land Types:Land
A:AB$ Mana | Cost$ T | Produced$ Any | SpellDescription$ Add one mana of any color to your mana pool | SubAbility$ DBReturn A:AB$ Mana | Cost$ T | Produced$ Any | SpellDescription$ Add one mana of any color to your mana pool. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand. | SubAbility$ DBReturn
SVar:DBReturn:DB$ Pump | Defined$ Self | KW$ HIDDEN During your next untap step, as you untap your permanents, return CARDNAME to its owner's hand. | Permanent$ True SVar:DBReturn:DB$ Pump | Defined$ Self | KW$ HIDDEN During your next untap step, as you untap your permanents, return CARDNAME to its owner's hand. | Permanent$ True
SVar:Picture:http://www.wizards.com/global/images/magic/general/undiscovered_paradise.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/undiscovered_paradise.jpg
Oracle:{T}: Add one mana of any color to your mana pool. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand. Oracle:{T}: Add one mana of any color to your mana pool. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand.

View File

@@ -148,6 +148,9 @@ public class RegenerateAi extends SpellAbilityAi {
} }
} }
} }
if (tgt.getTargets().isEmpty()) {
return false;
}
} }
return chance; return chance;