From d319b0c23f2fc4ceb9a4a269f575f76d9a9f8fa1 Mon Sep 17 00:00:00 2001 From: Charlie Nolan Date: Sun, 5 May 2024 23:08:17 -0700 Subject: [PATCH] Turns out we DO want HTML here. (#25402) Signed-off-by: Charlie Nolan --- code/__HELPERS/_logging.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm index 22356a2dd78..1fdbbbaa60e 100644 --- a/code/__HELPERS/_logging.dm +++ b/code/__HELPERS/_logging.dm @@ -38,7 +38,6 @@ GLOBAL_PROTECT(log_end) if(GLOB?.configuration?.logging.debug_logging) rustg_log_write(GLOB.world_game_log, "DEBUG: [text][GLOB.log_end]") - text = html_encode(text) for(var/client/C in GLOB.admins) if(check_rights(R_DEBUG | R_VIEWRUNTIMES, FALSE, C.mob) && (C.prefs.toggles & PREFTOGGLE_CHAT_DEBUGLOGS)) to_chat(C, "DEBUG: [text]", MESSAGE_TYPE_DEBUG, confidential = TRUE)