Skip to content

Commit

Permalink
MisClick
Browse files Browse the repository at this point in the history
  • Loading branch information
Steelpoint committed Aug 31, 2023
1 parent d140e1d commit 293326d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/gear_presets/_select_equipment.dm
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ var/list/rebel_rifles = list(
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/ushanka(new_human), WEAR_HEAD)

/datum/equipment_preset/proc/spawn_random_upp_armor(mob/living/carbon/human/new_human)
var/random_gear = rand(1, 4)
var/random_gear = rand(1, 5)
switch(random_gear)
if (1, 2, 3)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP (new_human), WEAR_BODY)
Expand All @@ -997,6 +997,10 @@ var/list/rebel_rifles = list(
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP (new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar(new_human), WEAR_IN_JACKET)
if (5)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP (new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar(new_human), WEAR_IN_JACKET)

/datum/equipment_preset/proc/spawn_random_upp_belt(mob/living/carbon/human/new_human)
var/random_gun = rand(1, 4)
Expand Down

0 comments on commit 293326d

Please sign in to comment.