From dcd4ce2d491382761a43dfa2b5a954499037cabd Mon Sep 17 00:00:00 2001 From: Spookerton Date: Sat, 30 Dec 2023 00:43:42 +0000 Subject: [PATCH] removed to_world uses from filth/CompileEntry --- code/modules/persistence/effects/filth.dm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/code/modules/persistence/effects/filth.dm b/code/modules/persistence/effects/filth.dm index f315aac816..98ca56c968 100644 --- a/code/modules/persistence/effects/filth.dm +++ b/code/modules/persistence/effects/filth.dm @@ -64,17 +64,11 @@ /datum/persistent/filth/CompileEntry(var/atom/entry) . = ..() LAZYADDASSOC(., "path", "[GetEntryPath(entry)]") - to_world("path is [GetEntryPath(entry)]") LAZYADDASSOC(., "pixel_x", "[entry.pixel_x]") - to_world("pixel_x is [entry.pixel_x]") LAZYADDASSOC(., "pixel_y", "[entry.pixel_y]") - to_world("pixel_y is [entry.pixel_y]") if(istype(entry, /obj/effect/decal/cleanable/crayon)) var/obj/effect/decal/cleanable/crayon/Inst = entry LAZYADDASSOC(., "art_type", "[Inst.art_type]") - to_world("art type is [Inst.art_type]") LAZYADDASSOC(., "art_color", "[Inst.art_color]") - to_world("art color is [Inst.art_color]") LAZYADDASSOC(., "art_shade", "[Inst.art_shade]") - to_world("art shade is [Inst.art_shade]")