mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Removes redundant check for AI
This commit is contained in:
@@ -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"
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/datum/job/ai
|
||||
pto_type = PTO_AI
|
||||
pto_type = PTO_CIVILIAN
|
||||
|
||||
/datum/job/cyborg
|
||||
pto_type = PTO_CYBORG
|
||||
|
||||
Reference in New Issue
Block a user