From 10f9eaf395d410a2bdf08d9f460c7a9e4723ef46 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 13 Feb 2016 20:12:08 +0100 Subject: [PATCH] * Despotic Scepter - Fixed tooltip text. --- .../src/mage/sets/masterseditionii/DespoticScepter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/masterseditionii/DespoticScepter.java b/Mage.Sets/src/mage/sets/masterseditionii/DespoticScepter.java index b02d2310093..6565b656e64 100644 --- a/Mage.Sets/src/mage/sets/masterseditionii/DespoticScepter.java +++ b/Mage.Sets/src/mage/sets/masterseditionii/DespoticScepter.java @@ -47,10 +47,10 @@ import mage.target.TargetPermanent; */ public class DespoticScepter extends CardImpl { - private final static FilterPermanent filter = new FilterPermanent(); + private final static FilterPermanent FILTER = new FilterPermanent("permanent you own"); static { - filter.add(new OwnerPredicate(TargetController.YOU)); + FILTER.add(new OwnerPredicate(TargetController.YOU)); } public DespoticScepter(UUID ownerId) { @@ -59,7 +59,7 @@ public class DespoticScepter extends CardImpl { // {tap}: Destroy target permanent you own. It can't be regenerated. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(true), new TapSourceCost()); - ability.addTarget(new TargetPermanent(filter)); + ability.addTarget(new TargetPermanent(FILTER)); this.addAbility(ability); }