From df65030bf821b21ed49d06a1aca361854457788d Mon Sep 17 00:00:00 2001 From: James Quinley Date: Tue, 20 Jun 2023 21:55:06 -0700 Subject: [PATCH] A test --- server.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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" }); });