[MIRROR] Unit Test rework & Master/Ticker update (#11372)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
Co-authored-by: C.L. <killer65311@gmail.com>
This commit is contained in:
Selis
2025-08-12 08:46:46 +02:00
committed by GitHub
parent 0ab6069dcb
commit 386c4f6756
390 changed files with 10560 additions and 5777 deletions

View File

@@ -66,15 +66,15 @@
if(M.gender == MALE)
H.gender = MALE
H.name = pick(first_names_male)
H.name = pick(GLOB.first_names_male)
else if(M.gender == FEMALE)
H.gender = FEMALE
H.name = pick(first_names_female)
H.name = pick(GLOB.first_names_female)
else
H.gender = NEUTER
H.name = pick(first_names_female|first_names_male)
H.name = pick(GLOB.first_names_female|GLOB.first_names_male)
H.name += " [pick(last_names)]"
H.name += " [pick(GLOB.last_names)]"
H.real_name = H.name
H.set_species(randomize)