From f8910213bf05bfb11c0165a5e3782942d4e89e9f Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 12 Mar 2021 18:59:27 -0500 Subject: [PATCH 1/2] Fixes bug with entertainer --- code/game/jobs/jobs.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 9312c84571d..6f04fc51215 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -11,6 +11,8 @@ var/const/ENGINEER =(1<<6) var/const/ATMOSTECH =(1<<7) var/const/AI =(1<<8) var/const/CYBORG =(1<<9) +var/const/CLOWN =(1<<13) //VOREStation Add +var/const/MIME =(1<<14) //VOREStation Add var/const/INTERN =(1<<15) //VOREStation Add var/const/MEDSCI =(1<<1) @@ -47,9 +49,7 @@ var/const/CHAPLAIN =(1<<10) var/const/ASSISTANT =(1<<11) var/const/BRIDGE =(1<<12) var/const/PILOT =(1<<13) //VOREStation Add -var/const/CLOWN =(1<<14) //VOREStation Add -var/const/MIME =(1<<15) //VOREStation Add -var/const/ENTERTAINER =(1<<16) //VOREStation Add +var/const/ENTERTAINER =(1<<14) //VOREStation Add //VOREStation Add var/const/TALON =(1<<3) From af975aa70b208ebb806e23afaf1e901085a3e2a7 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 12 Mar 2021 19:09:55 -0500 Subject: [PATCH 2/2] Updates Department Flags --- code/game/jobs/job/special_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/jobs/job/special_vr.dm b/code/game/jobs/job/special_vr.dm index 34cc2321ce8..ac855fb3cb0 100644 --- a/code/game/jobs/job/special_vr.dm +++ b/code/game/jobs/job/special_vr.dm @@ -54,7 +54,7 @@ title = "Clown" flag = CLOWN departments = list(DEPARTMENT_CIVILIAN) - department_flag = CIVILIAN + department_flag = ENGSEC faction = "Station" total_positions = 1 spawn_positions = 1 @@ -84,7 +84,7 @@ title = "Mime" flag = MIME departments = list(DEPARTMENT_CIVILIAN) - department_flag = CIVILIAN + department_flag = ENGSEC faction = "Station" total_positions = 1 spawn_positions = 1