From 84b8f9a20fb32c551a368866a64c8b773a4e3768 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Tue, 12 Jul 2022 23:54:22 +1000 Subject: [PATCH] Update join.blade.php --- resources/views/client/join.blade.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/views/client/join.blade.php b/resources/views/client/join.blade.php index 8911b03..b65c92c 100644 --- a/resources/views/client/join.blade.php +++ b/resources/views/client/join.blade.php @@ -13,7 +13,8 @@ if (Auth::check()) { $id = addslashes(Auth::id()); } else { $randName = mt_rand(1, 9999); - $username = "Guest " . $randName; + $username = "Thomas"; + //$username = "Guest " . $randName; $id = mt_rand(9999, 999999); } $ip = addslashes($_GET["ip"]);