Use newer isLobby

This commit is contained in:
Chars chan 2019-11-19 19:46:15 -07:00 committed by GitHub
parent f8b860e2ca
commit 93253a2bc9
1 changed files with 11 additions and 5 deletions

View File

@ -202,13 +202,19 @@ class Room extends EventEmitter {
} }
isLobby(_id) { isLobby(_id) {
if (_id.startsWith("lobby")) { if (_id.startsWith("lobby")) {
let lobbynum = _id.split("lobby")[1];
if (_id == "lobby") { if (_id == "lobby") {
return true; return true;
} else if (parseFloat(_id.split("lobby")[1] % 1) === 0) { }
return true; if (!(parseInt(lobbynum).toString() == lobbynum)) return false;
} else { for (let i in lobbynum) {
return false; if (parseInt(lobbynum[i]) >= 0) {
} if (parseInt(i) + 1 == lobbynum.length) return true;
} else {
return false;
}
}
} else if (_id.startsWith("test/")) { } else if (_id.startsWith("test/")) {
if (_id == "test/") { if (_id == "test/") {
return false; return false;