- Fixed remaining auras with "This effect doesn't remove CARDNAME".

This commit is contained in:
swordshine
2014-07-21 10:12:35 +00:00
parent e6f4de26dc
commit 4bd83f4ec9
6 changed files with 5 additions and 8 deletions

View File

@@ -8316,9 +8316,6 @@ public class Card extends GameEntity implements Comparable<Card> {
final String[] characteristics = characteristic.split(",");
final String exception = kws.length > 3 ? kws[3] : null; // check "This effect cannot remove sth"
if (source.isValid(characteristics, this.getController(), this)
&& !source.getName().contains("Flickering Ward") && !source.getName().contains("Pentarch Ward")
&& !source.getName().contains("Cho-Manno's Blessing") && !source.getName().contains("Floating Shield")
&& !source.getName().contains("Ward of Lights")
&& (!checkSBA || exception == null || !source.isValid(exception, this.getController(), this))) {
return true;
}