From 8648734e7e1f81a644c82d9788a1dfc23939b50a Mon Sep 17 00:00:00 2001
From: variableundefined <40092670+variableundefined@users.noreply.github.com>
Date: Mon, 15 Oct 2018 08:11:30 +0800
Subject: [PATCH] Formatting
---
code/modules/admin/verbs/randomverbs.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index deea7bda789..b681d6843ba 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -670,7 +670,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
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)) // Only count position that isn't unlimited
+ 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])")