* Spreading Seas - Fixed that not all existing land types (e.g. Urza's Mine) were removed if a land was enchanted by Spreading Seas.

This commit is contained in:
LevelX2 2015-10-27 09:24:39 +01:00
parent 89185096f1
commit fff9f18022
2 changed files with 3 additions and 5 deletions

View file

@ -113,10 +113,7 @@ class InfiniteObliterationEffect extends SearchTargetGraveyardHandLibraryForCard
@Override
public String getText(Mode mode) {
StringBuilder sb = new StringBuilder();
sb.append("Name a creature card. ");
sb.append(super.getText(mode));
return sb.toString();
return "Name a creature card. " + super.getText(mode);
}
}

View file

@ -108,7 +108,8 @@ public class BecomesBasicLandEnchantedEffect extends ContinuousEffectImpl {
}
break;
case TypeChangingEffects_4:
permanent.getSubtype().removeAll(allLandTypes);
// subtypes are all removed by changing the subtype to a land type.
permanent.getSubtype().clear();
permanent.getSubtype().addAll(landTypes);
break;
}