*Fixed March of Souls giving you Spirit tokens even if it can't destroy your creatures (by way of Elspeth's ultimate for instance).

This commit is contained in:
jendave
2011-08-06 12:30:22 +00:00
parent f8f81f564e
commit aacc93b570

View File

@@ -2423,7 +2423,7 @@ public class CardFactory_Sorceries {
public void change(PlayerZone play, Player owner) {
Card[] c = play.getCards();
for(int i = 0; i < c.length; i++) {
if(c[i].isCreature()) {
if(c[i].isCreature() && !c[i].hasKeyword("Indestructible")) {
AllZone.GameAction.destroyNoRegeneration(c[i]);
CardFactoryUtil.makeToken("Spirit", "W 1 1 Spirit", c[i].getController(), "W", new String[] {
"Creature", "Spirit"}, 1, 1, new String[] {"Flying"});