This commit is contained in:
James Quinley 2023-06-20 21:55:06 -07:00
parent 37be23c824
commit df65030bf8

View File

@ -42,11 +42,15 @@ app.get("/lobbylist/", async (request, response) => {
Field LBIP[num] breaks down into Lobby IP [Number], this informs the client what the IP is of the assosiated lobby
*/
response.status(200).json({
LobbyCount: 2,
LobbyCount: 4,
LBN1: "DebugLobbyOne",
LBIP1: "xxx.xxx.xxx.xxx",
LBN2: "DebugLobbyTwo",
LBIP2: "xxx.xxx.xxx.xxx"
LBIP2: "xxx.xxx.xxx.xxx",
LBN3: "More because yes",
LBIP3: "xxx.xxx.xxx.xxx",
LBN4: "It's called sex bro.(DB4$)",
LBIP4: "xxx.xxx.xxx.xxx"
});
});