From 8a29a9715ed1768095b4a8427e69bb202adeade9 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Wed, 20 Jul 2022 22:27:46 +1000 Subject: [PATCH] Added back id 400 error --- resources/views/client/join.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/client/join.blade.php b/resources/views/client/join.blade.php index 7eecccf..99eeac0 100644 --- a/resources/views/client/join.blade.php +++ b/resources/views/client/join.blade.php @@ -13,8 +13,8 @@ if (Auth::check()) { $id = addslashes(Auth::id()); } else { $randName = mt_rand(1, 9999); - $username = "ARCHBLOXUser " . $randName; - $id = $randName; + $username = "Guest " . $randName; + $id = 0; } $ip = addslashes($_GET["ip"]); $port = addslashes($_GET["port"]);