Fecundity was converted to triggers. The hard-coded stuff was never removed or commented. Now, it is removed.

This commit is contained in:
jendave
2011-08-06 20:44:35 +00:00
parent 82eb530c25
commit f37ffe5412
2 changed files with 0 additions and 51 deletions

View File

@@ -2064,22 +2064,7 @@ public class GameAction {
// Destroy needs to be called with Last Known Information
c.destroy();
//destroy card effects:
CardList list = AllZoneUtil.getCardsInPlay();
list = list.filter(new CardListFilter() {
public boolean addCard(Card c) {
ArrayList<String> keywords = c.getKeyword();
for(String kw:keywords) {
if(kw.startsWith("Whenever ") && kw.contains(" put into")
&& kw.contains("graveyard from the battlefield,")) return true;
}
return false;
}
});
checkWheneverKeyword(c, "PermanentIntoGraveyard",null);
for(int i = 0; i < list.size(); i++)
GameActionUtil.executeDestroyCardEffects(list.get(i), c);
if(persist) {
final Card persistCard = newCard;