mirror of
https://github.com/correl/mage.git
synced 2025-04-13 09:11:06 -09:00
Fixed typo in cant attack unless you pay mana hover tooltip.
also minor code comment fix
This commit is contained in:
parent
1592a4b3f3
commit
9f8c969f29
2 changed files with 2 additions and 2 deletions
Mage.Sets/src/mage/cards/f
Mage/src/main/java/mage/abilities/effects/common/combat
|
@ -82,7 +82,7 @@ class FrayingOmnipotenceEffect extends OneShotEffect {
|
||||||
player.discard(cardsToDiscard, false, source, game);
|
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)) {
|
for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) {
|
||||||
Player player = game.getPlayer(playerId);
|
Player player = game.getPlayer(playerId);
|
||||||
if (player == null) {
|
if (player == null) {
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class CantAttackYouUnlessPayManaAllEffect extends PayCostToAttackBlockEff
|
||||||
+ (payAlsoForAttackingPlaneswalker ? "or a planeswalker you control " : "")
|
+ (payAlsoForAttackingPlaneswalker ? "or a planeswalker you control " : "")
|
||||||
+ "unless their controller pays "
|
+ "unless their controller pays "
|
||||||
+ (manaCosts == null ? "" : manaCosts.getText())
|
+ (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) {
|
public CantAttackYouUnlessPayManaAllEffect(final CantAttackYouUnlessPayManaAllEffect effect) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue