diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 851fd0afd58..de2a97974a1 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -375,10 +375,13 @@ SUBSYSTEM_DEF(vote) var/votes = choices[choices[i]] if(!votes) votes = 0 + var/vote_count = null + if(check_rights(R_ADMIN, FALSE, C.mob)) + vote_count = " ([votes] vote\s)" if(current_votes[C.ckey] == i) - . += "
  • [choices[i]] ([votes] vote\s)
  • " + . += "
  • [choices[i]][vote_count]
  • " else - . += "
  • [choices[i]] ([votes] vote\s)
  • " + . += "
  • [choices[i]][vote_count]
  • " . += ""