mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Little fix for Melira, Sylvok Outcast.
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user