From aeb0af8a7fb9256889070b1c994e7e7ac475dec5 Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Mon, 6 Apr 2015 15:26:46 +0200 Subject: [PATCH] Emergency shuttle delay feedback correction. The emergency shuttle now states that the max refuel is 10 minutes rather than 100 minutes. --- code/game/machinery/computer/communications.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 9df53b039cc..542466f2be2 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -439,7 +439,7 @@ return if(world.time < 6000) // Ten minute grace period to let the game get going without lolmetagaming. -- TLE - user << "The emergency shuttle is refueling. Please wait another [round((6000-world.time)/60)] minutes before trying again." + user << "The emergency shuttle is refueling. Please wait another [round((6000-world.time)/600)] minute\s before trying again." return if(emergency_shuttle.going_to_centcom())