diff --git a/code/controllers/voting.dm b/code/controllers/voting.dm
index e9465bb937c..1aa410c87be 100644
--- a/code/controllers/voting.dm
+++ b/code/controllers/voting.dm
@@ -217,7 +217,7 @@ datum/controller/vote
for (var/T in L)
var/datum/game_mode/M = new T()
if (M.config_tag == F)
- additional_text.Add(" - [M.required_players] players required")
+ additional_text.Add("
[M.required_players] | ")
break
if("crew_transfer")
if(check_rights(R_ADMIN|R_MOD, 0))
@@ -299,20 +299,24 @@ datum/controller/vote
if(mode)
if(question) . += "Vote: '[question]'
"
else . += "Vote: [capitalize(mode)]
"
- . += "Time Left: [time_remaining] s
"
+ . += "Time Left: [time_remaining] s
"
+ . += "| Choices | Votes | "
+ if(capitalize(mode) == "Gamemode") .+= "Minimum Players |
"
+
for(var/i = 1, i <= choices.len, i++)
var/votes = choices[choices[i]]
if(!votes) votes = 0
+ . += ""
if(current_votes[C.ckey] == i)
- . += "- [choices[i]] ([votes] votes)"
+ . += "
| [choices[i]] | [votes] | "
else
- . += " - [choices[i]] ([votes] votes)"
+ . += "
| [choices[i]] | [votes] | "
if (additional_text.len >= i)
. += additional_text[i]
- . += " "
+ . += "
"
- . += "
"
+ . += "
"
if(admin)
. += "(Cancel Vote) "
else