diff --git a/code/controllers/voting.dm b/code/controllers/voting.dm
index e2bafbb0d6..d5503890a2 100644
--- a/code/controllers/voting.dm
+++ b/code/controllers/voting.dm
@@ -310,11 +310,16 @@ datum/controller/vote
var/votes = choices[choices[i]]
if(!votes) votes = 0
. += "
"
- if(current_votes[C.ckey] == i)
- . += "| [gamemode_names[choices[i]]] | [votes] | "
+ if(mode == "gamemode")
+ if(current_votes[C.ckey] == i)
+ . += "[gamemode_names[choices[i]]] | [votes] | "
+ else
+ . += "[gamemode_names[choices[i]]] | [votes] | "
else
- . += "[gamemode_names[choices[i]]] | [votes] | "
-
+ if(current_votes[C.ckey] == i)
+ . += "[choices[i]] | [votes] | "
+ else
+ . += "[choices[i]] | [votes] | "
if (additional_text.len >= i)
. += additional_text[i]
. += "
"