Refactor event max lobbies - is no longer a range
It's no longer a range because it: 1. Makes no sense for it to be a range 2. Makes for simpler scripts since returning a JS array is a hassle with Graal
This commit is contained in:
@@ -37,14 +37,14 @@ var maxMapId = 674030300;
|
||||
var eventTime = 45; // 45 minutes
|
||||
var bonusTime = 10; // 10 minutes
|
||||
|
||||
var lobbyRange = [0, 0];
|
||||
const maxLobbies = 1;
|
||||
|
||||
function init() {
|
||||
setEventRequirements();
|
||||
}
|
||||
|
||||
function setLobbyRange() {
|
||||
return lobbyRange;
|
||||
function getMaxLobbies() {
|
||||
return maxLobbies;
|
||||
}
|
||||
|
||||
function setEventRequirements() {
|
||||
|
||||
Reference in New Issue
Block a user