diff --git a/Mage.Sets/src/mage/cards/a/AKillerAmongUs.java b/Mage.Sets/src/mage/cards/a/AKillerAmongUs.java index 9b468396bfd..37d3c617423 100644 --- a/Mage.Sets/src/mage/cards/a/AKillerAmongUs.java +++ b/Mage.Sets/src/mage/cards/a/AKillerAmongUs.java @@ -208,7 +208,7 @@ class AKillerAmongUsEffect extends OneShotEffect { class AKillerAmongUsCost extends CostImpl { AKillerAmongUsCost() { - this.text = "Reveal the chosen creature type"; + this.text = "Reveal the creature type you chose"; } private AKillerAmongUsCost(final AKillerAmongUsCost cost) { diff --git a/Mage.Sets/src/mage/cards/a/AnzragTheQuakeMole.java b/Mage.Sets/src/mage/cards/a/AnzragTheQuakeMole.java index 6f60bc9ba4f..35550291020 100644 --- a/Mage.Sets/src/mage/cards/a/AnzragTheQuakeMole.java +++ b/Mage.Sets/src/mage/cards/a/AnzragTheQuakeMole.java @@ -40,8 +40,7 @@ public final class AnzragTheQuakeMole extends CardImpl { Ability ability = new BecomesBlockedSourceTriggeredAbility( new UntapAllEffect(filter), false ); - ability.addEffect(new AdditionalCombatPhaseEffect() - .setText("After this combat phase, there is an additional combat phase")); + ability.addEffect(new AdditionalCombatPhaseEffect()); this.addAbility(ability); // {3}{R}{R}{G}{G}: Anzrag must be blocked each combat this turn if able. diff --git a/Mage.Sets/src/mage/cards/b/BrambleFamiliar.java b/Mage.Sets/src/mage/cards/b/BrambleFamiliar.java index 7188cdab4ea..0229ac3003a 100644 --- a/Mage.Sets/src/mage/cards/b/BrambleFamiliar.java +++ b/Mage.Sets/src/mage/cards/b/BrambleFamiliar.java @@ -84,8 +84,8 @@ class FetchQuestEffect extends OneShotEffect { FetchQuestEffect() { super(Outcome.Benefit); - staticText = "mill seven cards, then put a creature, enchantment, or land card " - + "from among cards milled this way onto the battlefield"; + staticText = "mill seven cards. Then put a creature, enchantment, or land card " + + "from among the milled cards onto the battlefield"; } private FetchQuestEffect(final FetchQuestEffect effect) { @@ -115,4 +115,4 @@ class FetchQuestEffect extends OneShotEffect { return true; } -} \ No newline at end of file +} diff --git a/Mage.Sets/src/mage/cards/j/JeskasWill.java b/Mage.Sets/src/mage/cards/j/JeskasWill.java index f3856429ded..7cde1f4968b 100644 --- a/Mage.Sets/src/mage/cards/j/JeskasWill.java +++ b/Mage.Sets/src/mage/cards/j/JeskasWill.java @@ -27,7 +27,7 @@ public final class JeskasWill extends CardImpl { // Choose one. If you control a commander as you cast this spell, you may choose both. this.getSpellAbility().getModes().setChooseText( - "Choose one. If you control a commander as you cast this spell, you may choose both." + "Choose one. If you control a commander as you cast this spell, you may choose both instead." ); this.getSpellAbility().getModes().setMoreCondition(ControlACommanderCondition.instance); @@ -70,7 +70,7 @@ class JeskasWillEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { Player controller = game.getPlayer(source.getControllerId()); Player player = game.getPlayer(source.getFirstTarget()); - if (controller == null || player == null || player.getHand().size() < 1) { + if (controller == null || player == null || player.getHand().isEmpty()) { return false; } controller.getManaPool().addMana(Mana.RedMana(player.getHand().size()), game, source);