From e340a39353ba29beae43d886fbed0e899ee34d66 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Wed, 22 Sep 2021 15:24:44 -0700 Subject: [PATCH] Oh god this finally fixes the bug with pilot and SAR --- code/game/jobs/jobs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 1e78734795..31e0cc4fc1 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -32,6 +32,7 @@ var/const/PATHFINDER =(1<<11) //VOREStation Add var/const/EXPLORER =(1<<12) //VOREStation Add var/const/SAR =(1<<13) //VOREStation Add var/const/XENOBOTANIST =(1<<14) //VOREStation Add +var/const/PILOT =(1<<15) //CHOMPStation EDIT var/const/CIVILIAN =(1<<2) @@ -48,8 +49,7 @@ var/const/LAWYER =(1<<9) var/const/CHAPLAIN =(1<<10) var/const/ASSISTANT =(1<<11) var/const/BRIDGE =(1<<12) -var/const/PILOT =(1<<13) //VOREStation Add -var/const/ENTERTAINER =(1<<14) //VOREStation Add +var/const/ENTERTAINER =(1<<13) //VOREStation Add var/list/assistant_occupations = list( )