diff --git a/server.js b/server.js index 1ca523e..517813f 100644 --- a/server.js +++ b/server.js @@ -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" }); });