From 23e017763c569a6d504047055400a4d93561abcc Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Wed, 20 Aug 2014 00:47:35 +0100 Subject: [PATCH] Vote fix Without the bug --- code/controllers/voting.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/voting.dm b/code/controllers/voting.dm index 0d27d567..6d3b3185 100644 --- a/code/controllers/voting.dm +++ b/code/controllers/voting.dm @@ -236,7 +236,7 @@ datum/controller/vote mode = vote_type initiator = initiator_key started_time = world.time - var/timedifference = world.time - last_vote_time + var/timedifference = round((world.time - last_vote_time)) var/timedifference_text timedifference_text = time2text(timedifference,"mm:ss") for(var/client/C in admins)