From 78653b31756c4cafca881d9c3720f43bdc166cb7 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 7 Jul 2013 02:42:28 -0700 Subject: [PATCH] Removes visible tallies from votes. --- code/controllers/voting.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/voting.dm b/code/controllers/voting.dm index d8bb478fb99..8c31d17f6c1 100644 --- a/code/controllers/voting.dm +++ b/code/controllers/voting.dm @@ -277,9 +277,9 @@ datum/controller/vote var/votes = choices[choices[i]] if(!votes) votes = 0 if(current_votes[C.ckey] == i) - . += "
  • [choices[i]] ([votes] votes)
  • " + . += "
  • [choices[i]]
  • " else - . += "
  • [choices[i]] ([votes] votes)
  • " + . += "
  • [choices[i]]
  • " . += "
    " if(admin)