From cfd822f69dd4bbad417de580de90e7c196727d0d Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 28 Jun 2014 22:24:26 +0930 Subject: [PATCH] Reduced botanist spawn count, renamed to Gardener, increased Science and Chef spawn count, added Xenobotanist alt title to Scientist. --- code/game/jobs/job/civilian.dm | 10 +++++----- code/game/jobs/job/science.dm | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index 2ed73f8a9d..0576e5b823 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -45,8 +45,8 @@ flag = CHEF department_flag = CIVILIAN faction = "Station" - total_positions = 1 - spawn_positions = 1 + total_positions = 2 + spawn_positions = 2 supervisors = "the head of personnel" selection_color = "#dddddd" access = list(access_hydroponics, access_bar, access_kitchen, access_morgue) @@ -70,12 +70,12 @@ /datum/job/hydro - title = "Botanist" + title = "Gardener" flag = BOTANIST department_flag = CIVILIAN faction = "Station" - total_positions = 3 - spawn_positions = 2 + total_positions = 2 + spawn_positions = 1 supervisors = "the head of personnel" selection_color = "#dddddd" access = list(access_hydroponics, access_bar, access_kitchen, access_morgue) // Removed tox and chem access because STOP PISSING OFF THE CHEMIST GUYS // //Removed medical access because WHAT THE FUCK YOU AREN'T A DOCTOR YOU GROW WHEAT //Given Morgue access because they have a viable means of cloning. diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index 60e30c085d..9231e9fc57 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -42,13 +42,13 @@ flag = SCIENTIST department_flag = MEDSCI faction = "Station" - total_positions = 5 + total_positions = 6 spawn_positions = 3 supervisors = "the research director" selection_color = "#ffeeff" access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_xenoarch) minimal_access = list(access_tox, access_tox_storage, access_research, access_xenoarch) - alt_titles = list("Xenoarcheologist", "Anomalist", "Phoron Researcher") + alt_titles = list("Xenoarcheologist", "Anomalist", "Phoron Researcher", "Xenobotanist") equip(var/mob/living/carbon/human/H) if(!H) return 0