From af857d0c0babfae9787ce2d09a015518db1c92e5 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 16 Jan 2018 09:32:00 -0500 Subject: [PATCH 1/2] Merge pull request #34478 from ChangelingRain/runtimefix Fixes a variety of runtimes that happen if a servant tries to access scripture without servants being properly active --- .../game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm b/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm index bfa27cefdb..e5497d7c9f 100644 --- a/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm +++ b/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm @@ -11,9 +11,9 @@ //reports to servants when scripture is locked or unlocked /proc/scripture_unlock_alert(list/previous_states) + . = scripture_unlock_check() if(!GLOB.servants_active) return - . = scripture_unlock_check() for(var/i in .) if(.[i] != previous_states[i]) update_slab_info()