Switch around random calls

This commit is contained in:
Mark van Alphen
2019-04-01 18:29:01 +02:00
committed by GitHub
parent d1f8adc724
commit 8cdb41b835
+3 -3
View File
@@ -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()
..()