mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
- Sideboarding: Quest mode now properly requires a sideboard of either 0 or 15 cards.
This commit is contained in:
@@ -165,7 +165,7 @@ public class GameNew {
|
||||
|
||||
PlayerZone library = player.getZone(ZoneType.Library);
|
||||
DeckSection sideboard = deck.getSideboard();
|
||||
int sideboardSize = gameType.isLimited() ? -1 : sideboard.countAll();
|
||||
int sideboardSize = (gameType == GameType.Draft || gameType == GameType.Sealed) ? -1 : sideboard.countAll();
|
||||
|
||||
if (!hasSideboard) {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user