From bbd161bd06de5b3e6d3f86bd1800abfef8649467 Mon Sep 17 00:00:00 2001 From: Lucy Date: Thu, 26 Dec 2024 16:50:10 -0500 Subject: [PATCH] weh --- monkestation/code/controllers/subsystem/plexora.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monkestation/code/controllers/subsystem/plexora.dm b/monkestation/code/controllers/subsystem/plexora.dm index 16119cc867f9..13247f860f5d 100644 --- a/monkestation/code/controllers/subsystem/plexora.dm +++ b/monkestation/code/controllers/subsystem/plexora.dm @@ -49,14 +49,14 @@ SUBSYSTEM_DEF(plexora) var/hrp_available = FALSE /datum/controller/subsystem/plexora/Initialize() - if (!rustg_file_exists(configuration_path)) + if (!aneri_file_read(configuration_path)) stack_trace("SSplexora has no configuration file! (missing: [configuration_path])") enabled = FALSE flags |= SS_NO_FIRE return SS_INIT_FAILURE // Get config - var/list/config = json_decode(rustg_file_read(configuration_path)) + var/list/config = json_decode(aneri_file_read(configuration_path)) if (!config["enabled"]) enabled = FALSE