mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
test
This commit is contained in:
@@ -164,7 +164,7 @@
|
||||
if(unique)
|
||||
return random_unique_beefman_name()
|
||||
|
||||
var/randname = beefman_name()
|
||||
var/randname = ethereal_name()
|
||||
|
||||
return randname
|
||||
|
||||
@@ -424,20 +424,11 @@
|
||||
// taken from _HELPERS/mobs.dm
|
||||
/proc/random_unique_beefman_name(gender, attempts_to_find_unique_name=10)
|
||||
for(var/i in 1 to attempts_to_find_unique_name)
|
||||
. = capitalize(beefman_name(gender))
|
||||
. = capitalize(ethereal_name(gender))
|
||||
|
||||
if(!findname(.))
|
||||
break
|
||||
|
||||
// taken from _HELPERS/names.dm
|
||||
/proc/beefman_name()
|
||||
var/tempname = "[pick(GLOB.experiment_names)] \Roman[rand(1,49)] "
|
||||
if(prob(50))
|
||||
tempname += pick(GLOB.russian_names)
|
||||
else
|
||||
tempname += pick(GLOB.beefman_names)
|
||||
return tempname
|
||||
|
||||
|
||||
// INTEGRATION //
|
||||
|
||||
|
||||
Reference in New Issue
Block a user