gui: fixed typo in mana pool dialog (#13391)

This commit is contained in:
Asa Reynolds 2025-02-26 01:39:40 -05:00 committed by GitHub
parent 532490553d
commit a20e304234
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2951,7 +2951,7 @@ public class HumanPlayer extends PlayerImpl {
protected boolean passWithManaPoolCheck(Game game) {
if (userData.confirmEmptyManaPool()
&& game.getStack().isEmpty() && getManaPool().count() > 0 && getManaPool().canLostManaOnEmpty()) {
String message = GameLog.getPlayerConfirmColoredText("You still have mana in your mana pool and it will be lose. Pass anyway?");
String message = GameLog.getPlayerConfirmColoredText("You still have mana in your mana pool and it will be lost. Pass anyway?");
if (!chooseUse(Outcome.Detriment, message, null, game)) {
sendPlayerAction(PlayerAction.PASS_PRIORITY_CANCEL_ALL_ACTIONS, game, null);
return false;