diff --git a/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java b/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java index 014f784fdd6..0dee6f5ced9 100644 --- a/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java +++ b/forge-game/src/main/java/forge/game/card/CardFactoryUtil.java @@ -3356,8 +3356,7 @@ public class CardFactoryUtil { final String power = k[1]; // tapXType has a special check for withTotalPower, and NEEDS it to be "+withTotalPowerGE" - // So adding redundant YouCtrl to simplify matters even though its unnecessary - String effect = "AB$ Animate | Cost$ tapXType | " + + String effect = "AB$ Animate | Cost$ tapXType | " + "CostDesc$ Crew " + power + " (Tap any number of creatures you control with total power " + power + " or more: | Crew$ True | Secondary$ True | Defined$ Self | Types$ Creature,Artifact | " + "RemoveCardTypes$ True | StackDescription$ SpellDescription | SpellDescription$ CARDNAME becomes" + diff --git a/forge-game/src/main/java/forge/game/cost/CostTapType.java b/forge-game/src/main/java/forge/game/cost/CostTapType.java index 44c7e80982e..e8a9b4ff2ac 100644 --- a/forge-game/src/main/java/forge/game/cost/CostTapType.java +++ b/forge-game/src/main/java/forge/game/cost/CostTapType.java @@ -184,7 +184,7 @@ public class CostTapType extends CostPartWithList { } final int amount = this.getAbilityAmount(ability); - return (typeList.size() != 0) && (typeList.size() >= amount); + return typeList.size() != 0 && typeList.size() >= amount; } /* (non-Javadoc) diff --git a/forge-gui/src/main/java/forge/gamemodes/match/input/InputSelectEntitiesFromList.java b/forge-gui/src/main/java/forge/gamemodes/match/input/InputSelectEntitiesFromList.java index 524f17d26cb..ed593159fe1 100644 --- a/forge-gui/src/main/java/forge/gamemodes/match/input/InputSelectEntitiesFromList.java +++ b/forge-gui/src/main/java/forge/gamemodes/match/input/InputSelectEntitiesFromList.java @@ -127,7 +127,7 @@ public class InputSelectEntitiesFromList extends InputSele if (sa != null && sa.hasParam("Crew")) { msg.append("\nCrewing: "). append(CardLists.getTotalPower((FCollection)getSelected(), true, true)). - append(" / ").append(TextUtil.fastReplace(sa.getPayCosts().getCostPartByType(CostTapType.class).getType(), "Creature.YouCtrl+withTotalPowerGE", "")); + append(" / ").append(TextUtil.fastReplace(sa.getPayCosts().getCostPartByType(CostTapType.class).getType(), "Creature.Other+withTotalPowerGE", "")); } return msg.toString();