From b900d60980ad4e931b2b826518ab900d4e6f54ba Mon Sep 17 00:00:00 2001 From: Archie Date: Thu, 22 Jul 2021 05:17:25 -0300 Subject: [PATCH] No need to log that. --- code/controllers/subsystem/persistence.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/controllers/subsystem/persistence.dm b/code/controllers/subsystem/persistence.dm index 29f865a4..5b4c27c3 100644 --- a/code/controllers/subsystem/persistence.dm +++ b/code/controllers/subsystem/persistence.dm @@ -420,9 +420,7 @@ SUBSYSTEM_DEF(persistence) /datum/controller/subsystem/persistence/proc/LoadPaintings() var/json_file = file("data/paintings.json") - log_world("Trying to find persistent painting data.") if(fexists(json_file)) - log_world("Persistent painting data found, loading.") paintings = json_decode(file2text(json_file)) for(var/obj/structure/sign/painting/P in painting_frames) P.load_persistent()