From 5c37ea54491fbee6adb9245c5f6675be6eb86f74 Mon Sep 17 00:00:00 2001 From: warior4356 Date: Sat, 13 Oct 2018 23:34:03 -0700 Subject: [PATCH] Small bug fix. --- code/game/objects/structures/safe.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index d50ce11fa1a..949eb3b0242 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -34,12 +34,12 @@ FLOOR SAFES open_pos = rand(0,99) - var/num1 = tumbler_2_open + 53 + var/num1 = tumbler_2_open + 54 if(num1 > 99) - num1 = num1 - 99 - var/num2 = tumbler_1_open + 97 + num1 = num1 - 100 + var/num2 = tumbler_1_open + 98 if(num2 > 99) - num2 = num2 - 99 + num2 = num2 - 100 combo_to_open = "Go right past [num1] twice then stop at [num1]. Go left past [num2] once then stop at [num2]. Turn right till it stops and its open."