Removes redundant check for AI

This commit is contained in:
Heroman
2020-05-12 18:35:51 +10:00
parent 3ef2c3c145
commit 25a7bde56f
3 changed files with 1 additions and 4 deletions

View File

@@ -58,7 +58,6 @@
#define PTO_CARGO "Cargo"
#define PTO_CIVILIAN "Civilian"
#define PTO_CYBORG "Cyborg"
#define PTO_AI "AI"
#define DEPARTMENT_TALON "ITV Talon"

View File

@@ -46,8 +46,6 @@ SUBSYSTEM_DEF(persist)
clear_unused_pto(M)
// Determine special PTO types and convert properly
if(department_earning == PTO_AI)
department_earning = PTO_CIVILIAN
if(department_earning == PTO_CYBORG)
if(isrobot(M))
var/mob/living/silicon/robot/C = M

View File

@@ -1,5 +1,5 @@
/datum/job/ai
pto_type = PTO_AI
pto_type = PTO_CIVILIAN
/datum/job/cyborg
pto_type = PTO_CYBORG