Card: remove unused hasEmbalm and hasEternalize again

This commit is contained in:
Hanmac
2017-06-29 04:40:09 +00:00
parent a745e9191b
commit 84f13fe9c9

View File

@@ -4850,20 +4850,6 @@ public class Card extends GameEntity implements Comparable<Card> {
} }
} }
return false; return false;
} else if (property.startsWith("hasEmbalm")) {
for (final SpellAbility sa : getSpellAbilities()) {
if (sa.getApi() == ApiType.CopyPermanent && sa.hasParam("Embalm")) {
return true;
}
}
return false;
} else if (property.startsWith("hasEternalize")) {
for (final SpellAbility sa : getSpellAbilities()) {
if (sa.getApi() == ApiType.CopyPermanent && sa.hasParam("Eternalize")) {
return true;
}
}
return false;
} else if (property.startsWith("DrawnThisTurn")) { } else if (property.startsWith("DrawnThisTurn")) {
if (!getDrawnThisTurn()) { if (!getDrawnThisTurn()) {
return false; return false;