Skip to content

Commit

Permalink
not a fan of this
Browse files Browse the repository at this point in the history
  • Loading branch information
harryob committed Nov 8, 2023
1 parent 1584096 commit 7c6cb5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/gear_presets/_select_equipment.dm
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

/datum/equipment_preset/proc/load_name(mob/living/carbon/human/new_human, randomise, client/mob_client)
new_human.gender = pick(60;MALE,40;FEMALE)
var/datum/preferences/A = new()
var/datum/preferences/A = INVOKE_ASYNC(_new(/datum/preferences))
A.randomize_appearance(new_human)
var/random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names))
new_human.change_real_name(new_human, random_name)
Expand Down

0 comments on commit 7c6cb5a

Please sign in to comment.