From 8368a8379c185c0a216063b22f23159d74750565 Mon Sep 17 00:00:00 2001 From: drmDev Date: Wed, 20 Jul 2016 11:36:58 -0400 Subject: [PATCH] variable naming for clarity - Spellbinder --- Mage.Sets/src/mage/sets/darksteel/Spellbinder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/darksteel/Spellbinder.java b/Mage.Sets/src/mage/sets/darksteel/Spellbinder.java index 8ea264e741..54319ee2ee 100644 --- a/Mage.Sets/src/mage/sets/darksteel/Spellbinder.java +++ b/Mage.Sets/src/mage/sets/darksteel/Spellbinder.java @@ -186,9 +186,9 @@ class SpellbinderCopyEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { Player controller = game.getPlayer(source.getControllerId()); if (controller != null) { - Permanent scepter = game.getPermanentOrLKIBattlefield(source.getSourceId()); - if (scepter != null && scepter.getImprinted() != null && !scepter.getImprinted().isEmpty()) { - Card imprintedInstant = game.getCard(scepter.getImprinted().get(0)); + Permanent spellbinder = game.getPermanentOrLKIBattlefield(source.getSourceId()); + if (spellbinder != null && spellbinder.getImprinted() != null && !spellbinder.getImprinted().isEmpty()) { + Card imprintedInstant = game.getCard(spellbinder.getImprinted().get(0)); if (imprintedInstant != null && game.getState().getZone(imprintedInstant.getId()).equals(Zone.EXILED)) { if (controller.chooseUse(outcome, new StringBuilder("Create a copy of ").append(imprintedInstant.getName()).append("?").toString(), source, game)) { Card copiedCard = game.copyCard(imprintedInstant, source, source.getControllerId());