From 988076b93c1e8aacae4077a53d2735b5dd83fd97 Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Tue, 2 Jan 2018 16:44:31 +0100 Subject: [PATCH] Minor fix --- Mage.Sets/src/mage/cards/a/AutumnWillow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/a/AutumnWillow.java b/Mage.Sets/src/mage/cards/a/AutumnWillow.java index 16829e0c7d9..7ccb1202e4a 100644 --- a/Mage.Sets/src/mage/cards/a/AutumnWillow.java +++ b/Mage.Sets/src/mage/cards/a/AutumnWillow.java @@ -100,7 +100,7 @@ class AutumnWillowEffect extends AsThoughEffectImpl { if (affectedControllerId.equals(source.getFirstTarget())) { Permanent creature = game.getPermanent(sourceId); if (creature != null) { - if (sourceId == source.getSourceId()) { + if (sourceId.equals(source.getSourceId())) { return true; } }