- Little fix for Melira, Sylvok Outcast.

This commit is contained in:
Sloth
2011-12-04 09:39:53 +00:00
parent 13cc7c0165
commit df35674aee

View File

@@ -1410,7 +1410,7 @@ public class Card extends GameEntity implements Comparable<Card> {
if (this.hasKeyword("CARDNAME can't have counters placed on it.")) { if (this.hasKeyword("CARDNAME can't have counters placed on it.")) {
return false; return false;
} }
if (counterName.equals(Counters.M1M1)) { if (this.isCreature() && counterName.equals(Counters.M1M1)) {
for (final Card c : AllZoneUtil.getCreaturesInPlay(this.getController())) { // look for (final Card c : AllZoneUtil.getCreaturesInPlay(this.getController())) { // look
// for // for
// Melira, // Melira,
@@ -5565,7 +5565,7 @@ public class Card extends GameEntity implements Comparable<Card> {
this.extrinsicKeyword.remove(s); this.extrinsicKeyword.remove(s);
} }
} }
public void removeAllExtrinsicKeyword(final String s) { public void removeAllExtrinsicKeyword(final String s) {
final ArrayList<String> strings = new ArrayList<String>(); final ArrayList<String> strings = new ArrayList<String>();
strings.add(s); strings.add(s);