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:
@@ -44,12 +44,12 @@ var forceHideMsgTime = 10; // unfortunately, EIM weddings don't send wedding ta
|
||||
var eventBoss = true; // spawns a Cake boss at the hunting ground
|
||||
var isCathedral = false;
|
||||
|
||||
var lobbyRange = [0, 0];
|
||||
const maxLobbies = 1;
|
||||
|
||||
function init() {}
|
||||
|
||||
function setLobbyRange() {
|
||||
return lobbyRange;
|
||||
function getMaxLobbies() {
|
||||
return maxLobbies;
|
||||
}
|
||||
|
||||
function setEventExclusives(eim) {
|
||||
|
||||
Reference in New Issue
Block a user