From 91e9c9e566338daf88969fffaae723abf2d28bb6 Mon Sep 17 00:00:00 2001 From: Chap Date: Thu, 20 Nov 2025 11:40:30 +0100 Subject: [PATCH] [RUNTIME] Telesci console no longer runtimes trying to generate a log (#30999) * Tactical envirosuit helmet icon_state properly updates on reskin * Revert "Tactical envirosuit helmet icon_state properly updates on reskin" This reverts commit c4d10881b2313e1bd5a0fe9f792e364fcba06095. * Telescience computer log no longer causes runtimes --------- Co-authored-by: adrermail@gmail.com --- code/modules/telesci/telesci_computer.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/telesci/telesci_computer.dm b/code/modules/telesci/telesci_computer.dm index 3249f197860..c32e203b285 100644 --- a/code/modules/telesci/telesci_computer.dm +++ b/code/modules/telesci/telesci_computer.dm @@ -197,8 +197,7 @@ var/turf/source = target var/turf/dest = get_turf(TP) - var/list/log_msg = list() - log_msg += "[key_name(user)] has teleported " + var/log_msg = "[key_name(user)] has teleported " if(sending) source = dest @@ -260,7 +259,7 @@ var/area/A = get_area(target) log_msg += " [sending ? "to" : "from"] [trueX], [trueY], [target_z] ([A ? A.name : "null area"])" - investigate_log(log_msg.Join(""), "telesci") + investigate_log(log_msg, "telesci") SStgui.update_uis(src)