From 8cdb41b835d29826e62cbffdf06db531d99b7a4f Mon Sep 17 00:00:00 2001 From: Mark van Alphen Date: Mon, 1 Apr 2019 18:29:01 +0200 Subject: [PATCH] Switch around random calls --- code/game/objects/structures/safe.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index cc9173f2068..7925036d70f 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -38,11 +38,11 @@ GLOBAL_LIST_EMPTY(safes) /obj/structure/safe/New() GLOB.safes += src - tumbler_2_pos = rand(0, 71) // first value in the combination set first - tumbler_2_open = rand(0, 71) - tumbler_1_pos = rand(0, 71) tumbler_1_open = rand(0, 71) + + tumbler_2_pos = rand(0, 71) // first value in the combination set first + tumbler_2_open = rand(0, 71) /obj/structure/safe/Initialize() ..()