diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm
index 772d7f7b8d..eb28d4b4f2 100644
--- a/code/controllers/subsystem/vote.dm
+++ b/code/controllers/subsystem/vote.dm
@@ -320,11 +320,11 @@ SUBSYSTEM_DEF(vote)
admintext += "\nIt should be noted that this is not a raw tally of votes but rather the median score plus a tiebreaker!"
for(var/i=1,i<=choices.len,i++)
var/votes = choices[choices[i]]
- admintext += "\n[choices[i]]: [votes]"
+ admintext += "\n[choices[i]]: [votes ? votes : "0"]" //This is raw data, but the raw data is null by default. If ya don't compensate for it, then it'll look weird!
else
for(var/i=1,i<=scores.len,i++)
var/score = scores[scores[i]]
- admintext += "\n[scores[i]]: [score]"
+ admintext += "\n[scores[i]]: [score ? score : "0"]"
message_admins(admintext)
return .