From d786da6b7d4fbd6c15005e6af4b44cbfcb616699 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 8 Feb 2017 16:52:09 -0500 Subject: [PATCH] New alt-titles for HoP and Janitor * "Deputy Director" for HoP * "Maid" for Janitor Fixes #924 --- code/game/jobs/job/captain_vr.dm | 2 ++ code/game/jobs/job/civilian_vr.dm | 2 ++ vorestation.dme | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 code/game/jobs/job/captain_vr.dm create mode 100644 code/game/jobs/job/civilian_vr.dm diff --git a/code/game/jobs/job/captain_vr.dm b/code/game/jobs/job/captain_vr.dm new file mode 100644 index 0000000000..9df22d6563 --- /dev/null +++ b/code/game/jobs/job/captain_vr.dm @@ -0,0 +1,2 @@ +/datum/job/hop + alt_titles = list("Deputy Director", "Crew Resources Officer") \ No newline at end of file diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm new file mode 100644 index 0000000000..81f81a9dcf --- /dev/null +++ b/code/game/jobs/job/civilian_vr.dm @@ -0,0 +1,2 @@ +/datum/job/janitor + alt_titles = list("Custodian", "Sanitation Technician", "Maid") \ No newline at end of file diff --git a/vorestation.dme b/vorestation.dme index b4887f2124..58afd316e0 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -517,8 +517,10 @@ #include "code\game\jobs\whitelist_vr.dm" #include "code\game\jobs\job\assistant.dm" #include "code\game\jobs\job\captain.dm" +#include "code\game\jobs\job\captain_vr.dm" #include "code\game\jobs\job\civilian.dm" #include "code\game\jobs\job\civilian_chaplain.dm" +#include "code\game\jobs\job\civilian_vr.dm" #include "code\game\jobs\job\engineering.dm" #include "code\game\jobs\job\job.dm" #include "code\game\jobs\job\job_vr.dm"