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() ..()