From 9b149244b04bb22a974509348ab00e84d2957bae Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sun, 26 Jan 2020 21:56:31 +0100 Subject: [PATCH] Ok here we go. --- code/modules/shuttle/emergency.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttle/emergency.dm b/code/modules/shuttle/emergency.dm index 96d1c04856..703184320f 100644 --- a/code/modules/shuttle/emergency.dm +++ b/code/modules/shuttle/emergency.dm @@ -75,7 +75,7 @@ auth_combo = 0 else if(auth_combo >= MAX_AUTH_INPUTS) - to_chat(user, "Authorizations controller lockdown engaged, please wait [CEILING(auth_coodown - world.time)] before trying again.") + to_chat(user, "Authorizations controller lockdown engaged, please wait [CEILING(auth_coodown - world.time, 1)] before trying again.") return var/old_len = authorized.len @@ -103,7 +103,7 @@ if(repeal) minor_announce("Early launch authorization revoked, [remaining] authorizations needed") auth_cooldown = world.time + 15 SECONDS - if(++auth_combo = MAX_AUTH_INPUTS) //C-c-combo breaker! + if(++auth_combo == MAX_AUTH_INPUTS) //C-c-combo breaker! say("Authorization controller abuse detected, lockdown engaged.") playsound(src, 'sound/machines/buzz-sigh.ogg', 50, 0)