From 5b37346b3f1ed03dae9795b6d0e16b2ed3eb2d2e Mon Sep 17 00:00:00 2001 From: melvin Date: Wed, 16 Oct 2013 16:10:15 +0800 Subject: [PATCH] add 'creature an opponent controls' to filter factory --- src/magic/model/target/MagicTargetFilterFactory.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/magic/model/target/MagicTargetFilterFactory.java b/src/magic/model/target/MagicTargetFilterFactory.java index de66c65bc3..6e559a4dc5 100644 --- a/src/magic/model/target/MagicTargetFilterFactory.java +++ b/src/magic/model/target/MagicTargetFilterFactory.java @@ -89,6 +89,7 @@ public class MagicTargetFilterFactory { single.put("permanent you control", TARGET_PERMANENT_YOU_CONTROL); single.put("permanent you own", TARGET_PERMANENT_YOU_OWN); single.put("permanent an opponent controls", TARGET_PERMANENT_AN_OPPONENT_CONTROLS); + single.put("creature an opponent controls", TARGET_CREATURE_YOUR_OPPONENT_CONTROLS); single.put("black permanent", TARGET_BLACK_PERMANENT); single.put("black or red permanent", TARGET_BLACK_RED_PERMANENT); single.put("multicolored permanent you control", TARGET_MULTICOLORED_PERMANENT_YOU_CONTROL);