From 7f5fc850fd4ea79e873aa62270416e085de4f405 Mon Sep 17 00:00:00 2001
From: variableundefined <40092670+variableundefined@users.noreply.github.com>
Date: Sun, 14 Oct 2018 19:29:29 +0800
Subject: [PATCH] Close some span tags
---
code/modules/admin/verbs/randomverbs.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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())