From 5fe5d424752e3852efa0e4bdc571bbd8997608fb Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 15 Jun 2023 22:55:14 +0200 Subject: [PATCH] [MIRROR] ""Fixes"" Siliconnect log UI updating [MDB IGNORE] (#21853) * ""Fixes"" Siliconnect log UI updating (#75890) i dont think borg logs are static why are they in static update changes them to normal ui update * ""Fixes"" Siliconnect log UI updating --------- Co-authored-by: jimmyl <70376633+mc-oofert@users.noreply.github.com> --- .../modular_computers/file_system/programs/borg_monitor.dm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/code/modules/modular_computers/file_system/programs/borg_monitor.dm b/code/modules/modular_computers/file_system/programs/borg_monitor.dm index 0cda5b5e7c2..c085ad3ae4e 100644 --- a/code/modules/modular_computers/file_system/programs/borg_monitor.dm +++ b/code/modules/modular_computers/file_system/programs/borg_monitor.dm @@ -62,7 +62,6 @@ loglist.Insert(1,"System log of unit [DL_source.name]") DL_progress = -1 DL_source = null - update_static_data_for_all_viewers() return DL_progress += 25 @@ -100,11 +99,9 @@ ) data["cyborgs"] += list(cyborg_data) data["DL_progress"] = DL_progress - return data - -/datum/computer_file/program/borg_monitor/ui_static_data(mob/user) - var/list/data = list() + data["borglog"] = loglist + return data /datum/computer_file/program/borg_monitor/ui_act(action, params, datum/tgui/ui, datum/ui_state/state)