From 00814c6fb74fbfe37bbf069fc08c87b4b2972e57 Mon Sep 17 00:00:00 2001 From: William Date: Sun, 22 Jan 2023 13:27:20 +0100 Subject: [PATCH] Fuck --- routes/willychat.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/willychat.php b/routes/willychat.php index f1ab37d..993904d 100644 --- a/routes/willychat.php +++ b/routes/willychat.php @@ -38,14 +38,14 @@ Route::match('get|post','/willychat/', function() { if (strlen($nick) > 128) { view('pages/willychat/error', [ - 'error' => 'You nickname is too long.' + 'error' => 'Your nickname is too long.' ]); die(); } if (strlen($text) > 4096) { view('pages/willychat/error', [ - 'error' => 'Do not send extremely long messages.' + 'error' => 'Do not send EXTREMELY long messages.' ]); die(); }