From 357aa418f9842305ff29bab46c06ad2b5f79797f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 21 Mar 2015 01:09:30 +0100 Subject: [PATCH] * Dragonlord Dromoka - Fixed that the can't cast ability did not work. --- Mage.Sets/src/mage/sets/dragonsoftarkir/DragonlordDromoka.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/dragonsoftarkir/DragonlordDromoka.java b/Mage.Sets/src/mage/sets/dragonsoftarkir/DragonlordDromoka.java index 3ec8fffdf3..06e25534a0 100644 --- a/Mage.Sets/src/mage/sets/dragonsoftarkir/DragonlordDromoka.java +++ b/Mage.Sets/src/mage/sets/dragonsoftarkir/DragonlordDromoka.java @@ -108,7 +108,7 @@ class DragonlordDromokaEffect extends ContinuousRuleModifyingEffectImpl { @Override public boolean applies(GameEvent event, Ability source, Game game) { - if (game.getActivePlayerId().equals(source.getSourceId()) && + if (game.getActivePlayerId().equals(source.getControllerId()) && game.getPlayer(source.getControllerId()).hasOpponent(event.getPlayerId(), game)) { return true; }