Fixed typo in cant attack unless you pay mana hover tooltip.

also minor code comment fix
This commit is contained in:
Gunnar Már Óttarsson 2019-05-16 15:04:57 +00:00
parent 1592a4b3f3
commit 9f8c969f29
2 changed files with 2 additions and 2 deletions

View file

@ -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) {