[MIRROR] Makes long numeric station name rarer [MDB IGNORE] (#14821)

* Makes long numeric station name rarer (#68218)

Makes long-ass station name rarer

Also makes it use normal prefixes rather than the generic "Space Station", which saps all the joy out of life

* Makes long numeric station name rarer

Co-authored-by: cacogen <25089914+cacogen@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-07-08 23:28:01 -04:00
committed by GitHub
co-authored by cacogen
parent 235a6a2cd6
commit 18d3cb063b
+2 -2
View File
@@ -66,7 +66,7 @@ GLOBAL_VAR(command_name)
new_station_name = name + " "
name = ""
if(prob(1))
if(prob(0.1))
random = 999999999 //ridiculously long name in written numbers
// Prefix
@@ -101,7 +101,7 @@ GLOBAL_VAR(command_name)
if(13)
new_station_name += pick("13","XIII","Thirteen")
if(999999999)
new_station_name = "Space Station " + convert_integer_to_words(rand(111111111,999999999), capitalise = TRUE)
new_station_name += convert_integer_to_words(rand(111111111,999999999), capitalise = TRUE)
return new_station_name
/proc/syndicate_name()