From b18d6f2fc8144010f2d1e65fa597d9be7fb74ec2 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Thu, 19 Jul 2012 13:40:12 +0400 Subject: [PATCH] One more fix for AsThoughEffects --- Mage/src/mage/players/PlayerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/players/PlayerImpl.java b/Mage/src/mage/players/PlayerImpl.java index 7030aa7d234..93bc839f196 100644 --- a/Mage/src/mage/players/PlayerImpl.java +++ b/Mage/src/mage/players/PlayerImpl.java @@ -670,7 +670,7 @@ public abstract class PlayerImpl> implements Player, Ser useable.put(ability.getId(), ability); } if (zone != Zone.HAND) { - if (game.getContinuousEffects().asThough(object.getId(), AsThoughEffectType.CAST, game)) { + if (zone != Zone.BATTLEFIELD && game.getContinuousEffects().asThough(object.getId(), AsThoughEffectType.CAST, game)) { for (ActivatedAbility ability: object.getAbilities().getActivatedAbilities(Zone.HAND)) { useable.put(ability.getId(), ability); }