mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- Fixed processing of wasNotCast and wasNotCastFrom (fixes Epochrasite and possibly other cards).
This commit is contained in:
@@ -5141,7 +5141,7 @@ public class Card extends GameEntity implements Comparable<Card> {
|
|||||||
if (null == getCastFrom()) {
|
if (null == getCastFrom()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else if (property.startsWith("wasNotCast")) {
|
} else if (property.equals("wasNotCast")) {
|
||||||
if (null != getCastFrom()) {
|
if (null != getCastFrom()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user