mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
small text fix for London Mulligan 1st mulligan to show 'card', others after that show 'cards'
This commit is contained in:
parent
6575f7ac7e
commit
a509e25c16
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ public class LondonMulligan extends Mulligan {
|
|||
Player player = game.getPlayer(playerId);
|
||||
int deduction = 1;
|
||||
if (freeMulligans > 0) {
|
||||
if (usedFreeMulligans != null && usedFreeMulligans.containsKey(player.getId())) {
|
||||
if (usedFreeMulligans.containsKey(player.getId())) {
|
||||
int used = usedFreeMulligans.get(player.getId());
|
||||
if (used < freeMulligans) {
|
||||
deduction = 0;
|
||||
|
@ -110,7 +110,7 @@ public class LondonMulligan extends Mulligan {
|
|||
Cards cards = new CardsImpl();
|
||||
cards.addAll(player.getHand());
|
||||
TargetCard target = new TargetCard(cardsToDiscard, cardsToDiscard, Zone.HAND,
|
||||
new FilterCard("cards to PUT on the BOTTOM of your library (Discard for Mulligan)"));
|
||||
new FilterCard("card" + (cardsToDiscard > 1 ? "s" : "") + " to PUT on the BOTTOM of your library (Discard for Mulligan)"));
|
||||
player.chooseTarget(Outcome.Neutral, cards, target, null, game);
|
||||
player.putCardsOnBottomOfLibrary(new CardsImpl(target.getTargets()), game, null, true);
|
||||
cards.removeAll(target.getTargets());
|
||||
|
|
Loading…
Reference in a new issue