Skip to content

Commit

Permalink
weh
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy committed Dec 26, 2024
1 parent be085e1 commit bbd161b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monkestation/code/controllers/subsystem/plexora.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bbd161b

Please sign in to comment.