From 161a626f82f816061ab090f4b8c6b27a5de712db Mon Sep 17 00:00:00 2001 From: dmasalin Date: Mon, 30 Mar 2020 13:20:48 -0400 Subject: [PATCH] Add TS Tournaments --- .../src/main/java/com/gempukku/lotro/hall/HallServer.java | 3 +++ 1 file changed, 3 insertions(+) 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 625ec785a..3d485d247 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 @@ -200,6 +200,9 @@ public class HallServer extends AbstractServer { _tournamentQueues.put("fotr_queue", new ImmediateRecurringQueue(1500, "fotr_block", CollectionType.ALL_CARDS, "fotrQueue-", "Fellowship Block", 4, true, tournamentService, _tournamentPrizeSchemeRegistry.getTournamentPrizes(cardSets, "onDemand"), _pairingMechanismRegistry.getPairingMechanism("singleElimination"))); + _tournamentQueues.put("ts_queue", new ImmediateRecurringQueue(1500, "towers_standard", + CollectionType.ALL_CARDS, "tsQueue-", "Towers Standard", 4, + true, tournamentService, _tournamentPrizeSchemeRegistry.getTournamentPrizes(cardSets, "onDemand"), _pairingMechanismRegistry.getPairingMechanism("singleElimination"))); _tournamentQueues.put("movie_queue", new ImmediateRecurringQueue(1500, "movie", CollectionType.ALL_CARDS, "movieQueue-", "Movie Block", 4, true, tournamentService, _tournamentPrizeSchemeRegistry.getTournamentPrizes(cardSets, "onDemand"), _pairingMechanismRegistry.getPairingMechanism("singleElimination")));