From 88afb4cca1708d4bd34437107850e9b45fcd54fd Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Sun, 23 Oct 2022 10:57:16 +1100 Subject: [PATCH] Update join.blade.php --- resources/views/client/join.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/client/join.blade.php b/resources/views/client/join.blade.php index d5347d6..32f5a52 100644 --- a/resources/views/client/join.blade.php +++ b/resources/views/client/join.blade.php @@ -8,17 +8,17 @@ $port = addslashes($_GET["port"]); $id = addslashes($_GET["id"]); $app = addslashes($_GET["app"]);*/ -$authorised = 0 +$authorised = 0; if (Auth::check()) { $username = addslashes(Auth::user()->name); - $authorised = 1 + $authorised = 1; $id = addslashes(Auth::id()); $app = 'http://morblox.us/Asset/CharacterFetch.ashx?userId=' . addslashes(Auth::id()); } else { $randName = mt_rand(1, 9999); $username = "Guest " . $randName; - $authorised = 0 + $authorised = 0; $id = mt_rand(1000, 9999); $app = 'http://morblox.us/Asset/CharacterFetch.ashx?userId=0'; }