mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
[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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user