diff --git a/src/main/java/forge/Card.java b/src/main/java/forge/Card.java index 8bb91d18158..23c9a1429b5 100644 --- a/src/main/java/forge/Card.java +++ b/src/main/java/forge/Card.java @@ -9195,7 +9195,7 @@ public class Card extends GameEntity implements Comparable { int requestedCMC = 0; - if (getRules().getSplitType() == CardSplitType.Split) { + if (getRules() != null && getRules().getSplitType() == CardSplitType.Split) { switch(mode) { case CurrentSideCMC: // TODO: test if this returns combined CMC for the full face (then get rid of CombinedCMC mode?)