Skip to content

Commit

Permalink
Add missing argument that is passed to load_status
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Nov 6, 2023
1 parent 832d8f0 commit 15beb5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/gear_presets/uscm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m56_goggles(new_human), WEAR_EYES)

/datum/equipment_preset/uscm/sg/full/load_status()
/datum/equipment_preset/uscm/sg/full/load_status(mob/living/carbon/human/new_human)
return //No cryo munchies

//*****************************************************************************************************/
Expand Down Expand Up @@ -175,7 +175,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/service/tanker, WEAR_JACKET)

/datum/equipment_preset/uscm/tank/load_status()
/datum/equipment_preset/uscm/tank/load_status(mob/living/carbon/human/new_human)
return

//*****************************************************************************************************/
Expand Down Expand Up @@ -235,7 +235,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/intel(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)

/datum/equipment_preset/uscm/intel/load_status()
/datum/equipment_preset/uscm/intel/load_status(mob/living/carbon/human/new_human)
return //No cryo munchies

//*****************************************************************************************************/
Expand Down Expand Up @@ -319,7 +319,7 @@
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human.back), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human.back), WEAR_IN_BACK)

/datum/equipment_preset/uscm/spec/full_armor/load_status()
/datum/equipment_preset/uscm/spec/full_armor/load_status(mob/living/carbon/human/new_human)
return //No cryo munchies

//*****************************************************************************************************/
Expand Down

0 comments on commit 15beb5d

Please sign in to comment.