- Fixed processing of wasNotCast and wasNotCastFrom (fixes Epochrasite and possibly other cards).

This commit is contained in:
Agetian
2015-06-12 05:09:10 +00:00
parent 2181ed3ed3
commit 011493189d

View File

@@ -5141,7 +5141,7 @@ public class Card extends GameEntity implements Comparable<Card> {
if (null == getCastFrom()) {
return false;
}
} else if (property.startsWith("wasNotCast")) {
} else if (property.equals("wasNotCast")) {
if (null != getCastFrom()) {
return false;
}