From 19cbfb129aaa1e62d8175c06acd18a8938d34d61 Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Sun, 30 Jun 2024 18:30:17 +0200 Subject: [PATCH] Makes our time defines use strict numbers instead of nested defines (#26069) * ITS LITERALLY FREE PERFORMANCE * I CAN DO BASIC MATH I PROMISE --- code/__HELPERS/time.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/time.dm b/code/__HELPERS/time.dm index fc3d944dc80..033c410ba37 100644 --- a/code/__HELPERS/time.dm +++ b/code/__HELPERS/time.dm @@ -5,9 +5,9 @@ // So you can be all 10 SECONDS #define SECONDS *10 -#define MINUTES SECONDS*60 +#define MINUTES *600 -#define HOURS MINUTES*60 +#define HOURS *36000 #define TICKS *world.tick_lag