From e0fa5f58b7087f8f4dcf5f191fde7c769093707d Mon Sep 17 00:00:00 2001 From: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Date: Fri, 18 Feb 2022 16:02:09 +0000 Subject: [PATCH] Fixes ToS decline issues (#17424) --- code/modules/admin/IsBanned.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/IsBanned.dm b/code/modules/admin/IsBanned.dm index f4cc1cdc852..6f8357b5692 100644 --- a/code/modules/admin/IsBanned.dm +++ b/code/modules/admin/IsBanned.dm @@ -58,7 +58,7 @@ // If there is no row, they didnt accept if(!check_query.NextRow()) qdel(check_query) - return list("reason"="tos", "desc"="\nReason: You are trying to connect without accepting server ToS. If this error persists, please contact the server host.") + return list("reason"="tos", "desc"="\nReason: You are trying to connect without accepting server ToS. If you did not get a ToS popup, please go to paradise13.org/fixtos") qdel(check_query) // As per my comment 8 or so lines above, we do NOT log failed connections here