mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
concede on mulligan handled
This commit is contained in:
@@ -1545,7 +1545,11 @@ public class GameAction {
|
||||
if( hasKept[i]) continue;
|
||||
|
||||
Player p = whoCanMulligan.get(i);
|
||||
List<Card> toMulligan = p.canMulligan() ? p.getController().getCardsToMulligan(isCommander, firstPlayer) : null;
|
||||
List<Card> toMulligan = p.canMulligan() ? p.getController().getCardsToMulligan(isCommander, firstPlayer) : null;
|
||||
|
||||
if ( game.isGameOver()) // conceded on mulligan prompt
|
||||
return;
|
||||
|
||||
if ( toMulligan != null && !toMulligan.isEmpty()) {
|
||||
if( !isCommander ) {
|
||||
toMulligan = new ArrayList<Card>(p.getCardsIn(ZoneType.Hand));
|
||||
|
||||
Reference in New Issue
Block a user