From bbef468d32a64b16c8b193e47bd3064fe4e13d4d Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 16 Mar 2022 01:47:36 +0100 Subject: [PATCH] [MIRROR] Simplifies Law Logging [MDB IGNORE] (#12116) * Simplifies Law Logging (#65449) dragomagol Member dragomagol commented 2 days ago About The Pull Request This removes the href logs from silicon logging. Why It's Good For The Game Current silicon law change logs in silicon.log are really really long. Like excessively long. It makes the logs necessarily difficult to read. Changelog cl admin: Silicon law logs are shorter and easier to read /cl * Simplifies Law Logging Co-authored-by: dragomagol <66640614+dragomagol@users.noreply.github.com> --- code/game/objects/items/AI_modules.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/AI_modules.dm b/code/game/objects/items/AI_modules.dm index 56df0cb7554..5e8f32e60cf 100644 --- a/code/game/objects/items/AI_modules.dm +++ b/code/game/objects/items/AI_modules.dm @@ -80,7 +80,7 @@ AI MODULES if(owned_borg.connected_ai && owned_borg.lawupdate) affected_cyborgs += owned_borg borg_flw += "[ADMIN_LOOKUPFLW(owned_borg)], " - borg_txt += "[ADMIN_LOOKUP(owned_borg)], " + borg_txt += "[owned_borg.name]([owned_borg.key]), " borg_txt = borg_txt.Join() GLOB.lawchanges.Add("[time] : [user.name]([user.key]) used [src.name] on [ainame]([aikey]).[law2log ? " The law specified [law2log]" : ""], [length(affected_cyborgs) ? ", impacting synced borgs [borg_txt]" : ""]")