diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index 0efd3f2f6b2..deea7bda789 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -665,15 +665,15 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(job_master)
var/currentpositiontally
var/totalpositiontally
- to_chat(src, "Job Name: Filled job slot / Total job slots (Free job slots) ")
+ to_chat(src, "Job Name: Filled job slot / Total job slots (Free job slots)")
for(var/datum/job/job in job_master.occupations)
to_chat(src, "[job.title]: [job.current_positions] / \
[job.total_positions == -1 ? "UNLIMITED" : job.total_positions] \
([job.total_positions == -1 ? "UNLIMITED" : job.total_positions - job.current_positions])")
- if(!(job.total_positions == -1))
+ if(!(job.total_positions == -1)) // Only count position that isn't unlimited
currentpositiontally += job.current_positions
totalpositiontally += job.total_positions
- to_chat(src, "Currently filled job slots (Excluding unlimited): [currentpositiontally] / [totalpositiontally] ([totalpositiontally - currentpositiontally])")
+ to_chat(src, "Currently filled job slots (Excluding unlimited): [currentpositiontally] / [totalpositiontally] ([totalpositiontally - currentpositiontally])")
feedback_add_details("admin_verb","LFS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/cmd_admin_explosion(atom/O as obj|mob|turf in view())