From cc83e234934d79d4b8b25bc38272cba33ff930ef Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Sun, 18 Mar 2012 11:58:10 -0700 Subject: [PATCH] Added light repairing tool for janitor. --- baystation12.dme | 1 + code/game/jobs/job/civilian.dm | 1 + code/game/objects/closets/janitor.dm | 1 + 3 files changed, 3 insertions(+) diff --git a/baystation12.dme b/baystation12.dme index 7e75353cf72..2b658e3cb85 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -1094,6 +1094,7 @@ #include "code\WorkInProgress\Ported\Bureaucracy\copier.dm" #include "code\WorkInProgress\Ported\Bureaucracy\filing.dm" #include "code\WorkInProgress\SkyMarshal\coatrack.dm" +#include "code\WorkInProgress\SkyMarshal\portalathe.dm" #include "code\WorkInProgress\SkyMarshal\traitoritems.dm" #include "code\WorkInProgress\SkyMarshal\wardrobes.dm" #include "code\WorkInProgress\Tastyfish\Eliza.dm" diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index 57d4d002cd2..7149a7550a2 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -212,6 +212,7 @@ H.equip_if_possible(new /obj/item/clothing/under/rank/janitor(H), H.slot_w_uniform) H.equip_if_possible(new /obj/item/clothing/shoes/black(H), H.slot_shoes) H.equip_if_possible(new /obj/item/device/pda/janitor(H), H.slot_belt) + H.equip_if_possible(new /obj/item/device/portalathe(H), H.slot_in_backpack) return 1 diff --git a/code/game/objects/closets/janitor.dm b/code/game/objects/closets/janitor.dm index e2670a36478..5f2cf56a16c 100644 --- a/code/game/objects/closets/janitor.dm +++ b/code/game/objects/closets/janitor.dm @@ -20,3 +20,4 @@ new /obj/item/weapon/cleaner(src) new /obj/item/weapon/cleaner(src) new /obj/item/weapon/trashbag(src) + new /obj/item/device/portalathe(src)