diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm index 408dd6837f0..666d1f2d3c9 100644 --- a/code/game/jobs/access.dm +++ b/code/game/jobs/access.dm @@ -138,7 +138,7 @@ if("Mime") return list(access_maint_tunnels) if("Chef") - return list(access_kitchen) + return list(access_kitchen, access_morgue) if("Roboticist") return list(access_robotics, access_tech_storage, access_medical, access_morgue, access_maint_tunnels) diff --git a/code/game/jobs/jobprocs.dm b/code/game/jobs/jobprocs.dm index 013032db589..f9e4dc1fea0 100644 --- a/code/game/jobs/jobprocs.dm +++ b/code/game/jobs/jobprocs.dm @@ -459,8 +459,8 @@ src.equip_if_possible(new /obj/item/weapon/storage/toolbox/mechanical(src), slot_l_hand) if ("Botanist") - src.equip_if_possible(new /obj/item/device/radio/headset/headset_med (src), slot_ears) - src.equip_if_possible(new /obj/item/device/pda/medical(src), slot_belt) +// src.equip_if_possible(new /obj/item/device/radio/headset/headset_med (src), slot_ears) +// src.equip_if_possible(new /obj/item/device/pda/medical(src), slot_belt) src.equip_if_possible(new /obj/item/clothing/under/rank/hydroponics(src), slot_w_uniform) src.equip_if_possible(new /obj/item/clothing/shoes/black(src), slot_shoes) src.equip_if_possible(new /obj/item/clothing/gloves/latex(src), slot_gloves) diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index bb933c7e4a0..b2bed1d6676 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -12,6 +12,7 @@ var/list/occupations = list( "Research Director", "Chaplain", "Roboticist", +// "Cyborg","Cyborg","Cyborg" "AI", "Barman", "Chef",