From b8bccd5386af9bb553511b14536b62dc276d49fe Mon Sep 17 00:00:00 2001 From: Sloth Date: Wed, 8 May 2013 06:22:22 +0000 Subject: [PATCH] - Fixed CostUnattach for AI. --- src/main/java/forge/card/cost/CostUnattach.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/forge/card/cost/CostUnattach.java b/src/main/java/forge/card/cost/CostUnattach.java index 8e2777861db..fb2b7f486ee 100644 --- a/src/main/java/forge/card/cost/CostUnattach.java +++ b/src/main/java/forge/card/cost/CostUnattach.java @@ -152,6 +152,6 @@ public class CostUnattach extends CostPartWithList { // We really shouldn't be able to get here if there's nothing to unattach return null; } - return new PaymentDecision(cardToUnattach.getEquippingCard()); + return new PaymentDecision(cardToUnattach); } }