diff --git a/Mage.Sets/src/mage/cards/z/ZenithChronicler.java b/Mage.Sets/src/mage/cards/z/ZenithChronicler.java index 9a46850d0ab..20f7bc10662 100644 --- a/Mage.Sets/src/mage/cards/z/ZenithChronicler.java +++ b/Mage.Sets/src/mage/cards/z/ZenithChronicler.java @@ -76,7 +76,7 @@ class ZenithChroniclerTriggeredAbility extends TriggeredAbilityImpl { Player controller = game.getPlayer(getControllerId()); Spell spell = game.getSpell(event.getTargetId()); SpellsCastWatcher watcher = game.getState().getWatcher(SpellsCastWatcher.class); - if (controller != null && spell != null && watcher != null) { + if (controller != null && spell != null && watcher != null && spell.getColor(game).isMulticolored()) { int multicoloredSpell = 0; for (Spell spellCastThisTurn : watcher.getSpellsCastThisTurn(spell.getControllerId())) { if (spellCastThisTurn.getColor(game).isMulticolored() && ++multicoloredSpell > 1) {