From 501c877837cfe2defe33e6932e7a60c13c74720d Mon Sep 17 00:00:00 2001 From: Sloth Date: Mon, 11 Feb 2013 20:51:43 +0000 Subject: [PATCH] - playSpellAbilityForFree will now setup charms. --- src/main/java/forge/game/GameActionPlay.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/forge/game/GameActionPlay.java b/src/main/java/forge/game/GameActionPlay.java index 249b30103a9..c941e5a1a7e 100644 --- a/src/main/java/forge/game/GameActionPlay.java +++ b/src/main/java/forge/game/GameActionPlay.java @@ -68,6 +68,9 @@ public class GameActionPlay { */ public final void playSpellAbilityForFree(final SpellAbility sa) { if (sa.getPayCosts() != null) { + if (sa.getApi() == ApiType.Charm && !sa.isWrapper()) { + CharmEffect.makeChoices(sa); + } final TargetSelection ts = new TargetSelection(sa.getTarget(), sa); final CostPayment payment = new CostPayment(sa.getPayCosts(), sa, game);