From 2665cf2eb628886c697f5f298231f17d0074c204 Mon Sep 17 00:00:00 2001 From: jeffwadsworth <> Date: Mon, 27 Jul 2020 20:52:31 -0500 Subject: [PATCH] - Fixed #6855. There are other examples of this issue that will be fixed as well. --- Mage.Sets/src/mage/cards/o/ObsidianFireheart.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/o/ObsidianFireheart.java b/Mage.Sets/src/mage/cards/o/ObsidianFireheart.java index 2df1a3b207d..76badc12280 100644 --- a/Mage.Sets/src/mage/cards/o/ObsidianFireheart.java +++ b/Mage.Sets/src/mage/cards/o/ObsidianFireheart.java @@ -94,7 +94,7 @@ class ObsidianFireheartOneShotEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { // If the owner/controller of this card leaves the game, the blaze counters // presence on the targeted land will continue to deal 1 damage every upkeep - // to the lands controller + // to the lands controller. Permanent targetLand = game.getPermanent(source.getFirstTarget()); if (targetLand != null && source.getTargets().get(0) != null) {