mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:57:01 +00:00
test
This commit is contained in:
@@ -164,7 +164,7 @@
|
|||||||
if(unique)
|
if(unique)
|
||||||
return random_unique_beefman_name()
|
return random_unique_beefman_name()
|
||||||
|
|
||||||
var/randname = beefman_name()
|
var/randname = ethereal_name()
|
||||||
|
|
||||||
return randname
|
return randname
|
||||||
|
|
||||||
@@ -424,20 +424,11 @@
|
|||||||
// taken from _HELPERS/mobs.dm
|
// taken from _HELPERS/mobs.dm
|
||||||
/proc/random_unique_beefman_name(gender, attempts_to_find_unique_name=10)
|
/proc/random_unique_beefman_name(gender, attempts_to_find_unique_name=10)
|
||||||
for(var/i in 1 to attempts_to_find_unique_name)
|
for(var/i in 1 to attempts_to_find_unique_name)
|
||||||
. = capitalize(beefman_name(gender))
|
. = capitalize(ethereal_name(gender))
|
||||||
|
|
||||||
if(!findname(.))
|
if(!findname(.))
|
||||||
break
|
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 //
|
// INTEGRATION //
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user