From 0e0ace14b5c78e6e238761ac18acb47e177ec448 Mon Sep 17 00:00:00 2001 From: jeffwadsworth <> Date: Thu, 18 Feb 2021 21:40:49 -0600 Subject: [PATCH] - Fixed #7596 --- .../src/main/java/mage/abilities/keyword/ForetellAbility.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage/src/main/java/mage/abilities/keyword/ForetellAbility.java b/Mage/src/main/java/mage/abilities/keyword/ForetellAbility.java index 3d236196a7..26d2527a0f 100644 --- a/Mage/src/main/java/mage/abilities/keyword/ForetellAbility.java +++ b/Mage/src/main/java/mage/abilities/keyword/ForetellAbility.java @@ -48,7 +48,9 @@ public class ForetellAbility extends SpecialAction { // exile the card and it can't be cast the turn it was foretold this.addEffect(new ForetellExileEffect(card, foretellCost, foretellSplitCost)); // look at face-down card anytime - addSubAbility(new SimpleStaticAbility(Zone.ALL, new ForetellLookAtCardEffect())); + Ability ability = new SimpleStaticAbility(Zone.ALL, new ForetellLookAtCardEffect()); + ability.setControllerId(controllerId); // if not set, anyone can look at the card in exile + addSubAbility(ability); this.setRuleVisible(true); this.addWatcher(new ForetoldWatcher()); }