From 00e982db7970a3bc72aae2e5f7328900efddbbc0 Mon Sep 17 00:00:00 2001 From: Bone White Date: Tue, 5 Aug 2014 14:43:32 +0100 Subject: [PATCH] Miner Drills spawn on belt This is to fix a bug with races which spawn with a bag in their hand overwriting the drill. --- code/game/jobs/job/support.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job/support.dm b/code/game/jobs/job/support.dm index 2747f1ba77b..6e64040b184 100644 --- a/code/game/jobs/job/support.dm +++ b/code/game/jobs/job/support.dm @@ -182,7 +182,7 @@ H.equip_or_collect(new /obj/item/clothing/under/rank/miner(H), slot_w_uniform) H.equip_or_collect(new /obj/item/device/pda/shaftminer(H), slot_wear_pda) H.equip_or_collect(new /obj/item/clothing/shoes/black(H), slot_shoes) - H.equip_or_collect(new /obj/item/weapon/pickaxe/drill(H), slot_r_hand) + H.equip_or_collect(new /obj/item/weapon/pickaxe/drill(H), slot_belt) // H.equip_or_collect(new /obj/item/clothing/gloves/black(H), slot_gloves) if(H.backbag == 1) H.equip_or_collect(new /obj/item/weapon/storage/box/engineer(H), slot_r_hand)