From 8cb6a7d3ea6a544282496c1fb320aafd8e31f43d Mon Sep 17 00:00:00 2001 From: Krer-Grimpaw Date: Sat, 23 Dec 2023 14:18:43 -0800 Subject: [PATCH] Whoopsie, should add the discord URL to the denial prompt --- code/modules/client/client_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index ee21eb3a..e9846f1e 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -364,7 +364,7 @@ GLOBAL_LIST_EMPTY(external_rsc_urls) to_chat(src, get_message_output("memo")) adminGreet() else if(!BC_IsKeyAllowedToConnect(ckey)) - to_chat(src, "Sorry, but the server is currently only accepting whitelisted players. Please see the discord to be whitelisted.") + to_chat(src, "Sorry, but the server is currently only accepting whitelisted players. Please see the discord to be whitelisted: https://discord.gg/HHxHm6F") log_and_message_admins("[ckey] was denied a connection due to not being whitelisted.") qdel(src) return 0