From 7762e54e99f40df97ead2a45a9ffd7923520cc71 Mon Sep 17 00:00:00 2001 From: fallcon Date: Wed, 29 Nov 2023 09:21:35 -0600 Subject: [PATCH] guns --- .../hostile/mining_mobs/hivelord_outfits.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm index fca5a269b50f..97dc0be75b8b 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm @@ -118,6 +118,15 @@ /obj/item/clothing/mask/breath = 1, ) ) + if (prob(5)) + belt = pickweight(list( + /obj/item/gun/ballistic/automatic/pistol/m1911 = 2, + /obj/item/gun/ballistic/automatic/pistol/commander = 1, + /obj/item/gun/ballistic/automatic/pistol = 1, + /obj/item/gun/ballistic/revolver = 1, + /obj/item/gun/ballistic/revolver/pepperbox = 1, + ) + ) back = pickweight(list( /obj/item/storage/backpack = 1, /obj/item/storage/backpack/satchel = 1,