removes change that freed job slot when an original card is demoted/terminated

This commit is contained in:
Kyep
2020-04-28 16:29:53 -07:00
parent 112baa534e
commit 4d47a99c4c
3 changed files with 0 additions and 12 deletions
-6
View File
@@ -642,12 +642,6 @@ SUBSYSTEM_DEF(jobs)
oldjobdatum.current_positions--
newjobdatum.current_positions++
/datum/controller/subsystem/jobs/proc/force_free_slot(oldtitle)
// Used when a crew ID is demoted/terminated in an ID computer.
var/datum/job/oldjobdatum = SSjobs.GetJob(oldtitle)
if(istype(oldjobdatum) && oldjobdatum.current_positions > 0)
oldjobdatum.current_positions--
/datum/controller/subsystem/jobs/proc/notify_dept_head(jobtitle, antext)
// Used to notify the department head of jobtitle X that their employee was brigged, demoted or terminated
if(!jobtitle || !antext)