From 8b6cdfe7f8b95fc08b00ddda5de6d3ca5ed46d1d Mon Sep 17 00:00:00 2001 From: Brett Williams Date: Sat, 27 Oct 2018 13:47:14 -0300 Subject: [PATCH] Improves Table-ing Logging (#41152) * epic table log fixes yeah honestly this is probably okay * okay look this is good now yup * oopsie woopsie i fixed the fucksie-wucksie! no more strings in my atom references uwu * goof did nothing wrong tabled instead of pushed! wow! --- code/game/objects/structures/tables_racks.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index e3236403a49..d92a0d53dff 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -111,7 +111,7 @@ pushed_mob.set_resting(TRUE, TRUE) pushed_mob.visible_message("[user] places [pushed_mob] onto [src].", \ "[user] places [pushed_mob] onto [src].") - log_combat(user, pushed_mob, "placed") + log_combat(user, pushed_mob, "places", null, "onto [src]") /obj/structure/table/proc/tablepush(mob/living/user, mob/living/pushed_mob) var/added_passtable = FALSE @@ -126,7 +126,7 @@ pushed_mob.Paralyze(40) pushed_mob.visible_message("[user] pushes [pushed_mob] onto [src].", \ "[user] pushes [pushed_mob] onto [src].") - log_combat(user, pushed_mob, "pushed") + log_combat(user, pushed_mob, "tabled", null, "onto [src]") if(!ishuman(pushed_mob)) return var/mob/living/carbon/human/H = pushed_mob