From 617327c05a2ebc69e561b1792ff5e5a8f7c33384 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Tue, 12 Jul 2022 20:26:31 +1000 Subject: [PATCH] Update join.blade.php --- 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 dd3404b..6843ec2 100644 --- a/resources/views/client/join.blade.php +++ b/resources/views/client/join.blade.php @@ -13,8 +13,8 @@ if (Auth::check()) { $username = addslashes(Auth::user()->name); $id = addslashes(Auth::id()); } else { - $randName = mt_rand(1000, 9999); - $randId = mt_rand(100000, 999999); + $randName = mt_rand(1, 9999); + $randId = mt_rand(-1, -9999); $username = "Guest " . $randName; $id = $randId; }