From dc48050c02812320b87ec56d4bc06abdc2446d02 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Tue, 20 May 2014 18:16:56 +0200 Subject: [PATCH] Fixed broken time definitions --- code/__HELPERS/time.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/__HELPERS/time.dm b/code/__HELPERS/time.dm index 47cdd3f7096..cbc7fd08920 100644 --- a/code/__HELPERS/time.dm +++ b/code/__HELPERS/time.dm @@ -1,7 +1,7 @@ // So you can be all 10 SECONDS -#define SECONDS **10 -#define MINUTES **600 -#define HOURS **36000 +#define SECONDS *10 +#define MINUTES *600 +#define HOURS *36000 //Returns the world time in english proc/worldtime2text(time = world.time)