Skip to content

Commit

Permalink
num
Browse files Browse the repository at this point in the history
  • Loading branch information
Steelpoint committed Sep 6, 2023
1 parent 3dccda0 commit e091dac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/gear_presets/_select_equipment.dm
Original file line number Diff line number Diff line change
Expand Up @@ -952,17 +952,17 @@ var/list/rebel_rifles = list(
)

/datum/equipment_preset/proc/load_upp_shotgun(mob/living/carbon/human/new_human)
var/random_shotgun = rand(1, 100)
var/random_shotgun = rand(1,3)
switch(random_shotgun)
if(1 to 33)
if(1)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_L_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavybuck, WEAR_R_STORE)
if(34 to 66)
if(2)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher/slug, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyslug, WEAR_L_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyslug, WEAR_R_STORE)
else
if(3)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/type23/breacher/flechette, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyflechette, WEAR_L_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/heavyflechette, WEAR_R_STORE)
Expand Down

0 comments on commit e091dac

Please sign in to comment.