From b6699cbf9a6baf6208d09f302cc798811ddea135 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Fri, 5 Jul 2013 21:57:51 -0700 Subject: [PATCH] Adds ammo to vox spawning with a crossbow. --- code/modules/admin/verbs/vox_raiders.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/admin/verbs/vox_raiders.dm b/code/modules/admin/verbs/vox_raiders.dm index 8774c3f14d1..7b81fc116fd 100644 --- a/code/modules/admin/verbs/vox_raiders.dm +++ b/code/modules/admin/verbs/vox_raiders.dm @@ -43,6 +43,10 @@ var/global/vox_tick = 1 W.cell.charge = 500 equip_to_slot_or_del(W, slot_r_hand) + var/obj/item/stack/rods/R = new(src) + R.amount = 20 + equip_to_slot_or_del(W, slot_l_hand) + if(4) // Vox medic! equip_to_slot_or_del(new /obj/item/clothing/suit/space/vox/pressure(src), slot_wear_suit) equip_to_slot_or_del(new /obj/item/clothing/head/helmet/space/vox/pressure(src), slot_head)