From 18d3cb063b542e86020363f045c1726ee8a80bc8 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 9 Jul 2022 05:28:01 +0200 Subject: [PATCH] [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> --- code/__HELPERS/names.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/names.dm b/code/__HELPERS/names.dm index 8a5920a45a9..e6d85012be2 100644 --- a/code/__HELPERS/names.dm +++ b/code/__HELPERS/names.dm @@ -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()