Added game speed settings

This commit is contained in:
marcin.sciesinski
2019-08-08 14:38:56 -07:00
parent b08ad7b7ec
commit 6b734d488c
2 changed files with 5 additions and 5 deletions

View File

@@ -92,10 +92,10 @@ var GempLotrHallUI = Class.extend({
this.decksSelect.hide();
this.timerSelect = $("<select style='width: 170px'></select>");
this.addTimer("default", "Default Speed");
this.addTimer("blitz", "Blitz!");
this.addTimer("slow", "Slow");
this.addTimer("glacial", "Glacial");
this.addTimer("default", "Default Speed (80m/5m)");
this.addTimer("blitz", "Blitz! (30m/2m)");
this.addTimer("slow", "Slow (2h/5m)");
this.addTimer("glacial", "Glacial (3d/1d)");
this.buttonsDiv.append(this.supportedFormatsSelect);
this.buttonsDiv.append(this.decksSelect);

View File

@@ -301,7 +301,7 @@ public class HallServer extends AbstractServer {
if (timer.equals("default")) {
return new GameTimer(false, "Default", 60 * 80, 60 * 5);
} else if (timer.equals("blitz")) {
return new GameTimer(false, "Blitz", 60 * 30, 60 * 2);
return new GameTimer(false, "Blitz!", 60 * 30, 60 * 2);
} else if (timer.equals("slow")) {
return new GameTimer(false, "Slow", 60 * 120, 60 * 5);
} else if (timer.equals("glacial")) {