From 5c0e88722eb724a8a8ae44c74d6c446a37cd2712 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 00:38:20 -0400 Subject: [PATCH] Merge pull request #32017 from ACCount12/patch-1 Fixes a SET_CONFIG bug --- code/controllers/configuration/configuration.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm index 323571bf8c..278424ca79 100644 --- a/code/controllers/configuration/configuration.dm +++ b/code/controllers/configuration/configuration.dm @@ -147,7 +147,7 @@ GLOBAL_PROTECT(config_dir) E = entries_by_type[entry_type] if(!E) CRASH("Missing config entry for [entry_type]!") - return E.ValidateAndSet(new_val) + return E.ValidateAndSet("[new_val]") /datum/controller/configuration/proc/LoadModes() gamemode_cache = typecacheof(/datum/game_mode, TRUE)