diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/GameTimer.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/GameTimer.java index f96915e44..38c94566b 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/GameTimer.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/GameTimer.java @@ -9,6 +9,7 @@ public record GameTimer(boolean longGame, String name, int maxSecondsPerPlayer, // 5 minutes timeout, 40 minutes per game per player public static final GameTimer COMPETITIVE_TIMER = new GameTimer(false, "Competitive", 60 * 40, 60 * 5); public static final GameTimer CHAMPIONSHIP_TIMER = new GameTimer(false, "WC", 60 * 20, 60 * 10); + public static final GameTimer EXPANDED_CHAMPIONSHIP_TIMER = new GameTimer(false, "WC_Expanded", 60 * 25, 60 * 10); public static final GameTimer TOURNAMENT_TIMER = new GameTimer(false, "Tournament", 60 * 40, 60 * 5); public static GameTimer ResolveTimer(String timer) { diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallServer.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallServer.java index f54865edd..0729b04f3 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallServer.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/hall/HallServer.java @@ -803,7 +803,7 @@ public class HallServer extends AbstractServer { null, null, true, false, false, false, GameTimer.TOURNAMENT_TIMER, null); wcGameSettings = new GameSettings(null, _formatLibrary.getFormat(_tournament.getFormat()), - null, null, true, false, false, false, GameTimer.CHAMPIONSHIP_TIMER, null); + null, null, true, false, false, false, GameTimer.EXPANDED_CHAMPIONSHIP_TIMER, null); } @Override