mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
*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:
@@ -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"});
|
||||
|
||||
Reference in New Issue
Block a user