From d06de1ec85e247ceefecdef8c26a31303a73af8c Mon Sep 17 00:00:00 2001 From: Northmoc Date: Fri, 24 Sep 2021 19:44:13 -0400 Subject: [PATCH] CostRemoveCounter allow for NICKNAME in desc --- forge-game/src/main/java/forge/game/cost/CostRemoveCounter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/cost/CostRemoveCounter.java b/forge-game/src/main/java/forge/game/cost/CostRemoveCounter.java index 28abc842c32..460a15f37ea 100644 --- a/forge-game/src/main/java/forge/game/cost/CostRemoveCounter.java +++ b/forge-game/src/main/java/forge/game/cost/CostRemoveCounter.java @@ -117,7 +117,7 @@ public class CostRemoveCounter extends CostPart { sb.append(" from "); - if (this.payCostFromSource()) { + if (this.getTypeDescription() == null && this.payCostFromSource()) { sb.append(this.getType()); } else { final String desc = this.getTypeDescription() == null ? this.getType() : this.getTypeDescription();