From 9f8c969f29bc8ce0c88dfc6e0992db6fc16ad9da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gunnar=20M=C3=A1r=20=C3=93ttarsson?= Date: Thu, 16 May 2019 15:04:57 +0000 Subject: [PATCH] Fixed typo in cant attack unless you pay mana hover tooltip. also minor code comment fix --- Mage.Sets/src/mage/cards/f/FrayingOmnipotence.java | 2 +- .../common/combat/CantAttackYouUnlessPayManaAllEffect.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/f/FrayingOmnipotence.java b/Mage.Sets/src/mage/cards/f/FrayingOmnipotence.java index fb3bbc6bb45..6afdf6a92f5 100644 --- a/Mage.Sets/src/mage/cards/f/FrayingOmnipotence.java +++ b/Mage.Sets/src/mage/cards/f/FrayingOmnipotence.java @@ -82,7 +82,7 @@ class FrayingOmnipotenceEffect extends OneShotEffect { player.discard(cardsToDiscard, false, source, game); } } - // then sacrifices half of the creatures they controls, + // then sacrifices half of the creatures they control, for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) { Player player = game.getPlayer(playerId); if (player == null) { diff --git a/Mage/src/main/java/mage/abilities/effects/common/combat/CantAttackYouUnlessPayManaAllEffect.java b/Mage/src/main/java/mage/abilities/effects/common/combat/CantAttackYouUnlessPayManaAllEffect.java index ca59b004149..8ea0b7a3132 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/combat/CantAttackYouUnlessPayManaAllEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/combat/CantAttackYouUnlessPayManaAllEffect.java @@ -36,7 +36,7 @@ public class CantAttackYouUnlessPayManaAllEffect extends PayCostToAttackBlockEff + (payAlsoForAttackingPlaneswalker ? "or a planeswalker you control " : "") + "unless their controller pays " + (manaCosts == null ? "" : manaCosts.getText()) - + " for each creature they controls that's attacking you"; + + " for each creature they control that's attacking you"; } public CantAttackYouUnlessPayManaAllEffect(final CantAttackYouUnlessPayManaAllEffect effect) {