Skip to content

Commit

Permalink
Brings back UPP Random Names for the Survs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Watchson committed Jan 9, 2024
1 parent 7c9402f commit 320e52d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
ACCESS_CIVILIAN_PUBLIC,
)

/datum/equipment_preset/survivor/upp/load_name(mob/living/carbon/human/new_human, randomise)
new_human.gender = pick(60;MALE,40;FEMALE)
var/random_name
random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male_upp : GLOB.first_names_female_upp)) + " " + capitalize(pick(GLOB.last_names_upp))
new_human.change_real_name(new_human, random_name)

/datum/equipment_preset/survivor/upp/load_gear(mob/living/carbon/human/new_human)
var/obj/item/clothing/under/marine/veteran/UPP/uniform = new()
var/random_number = rand(1,2)
Expand Down

0 comments on commit 320e52d

Please sign in to comment.