Surplus Vaurca Drone Hive names get properly set (#22976)

woops, I forgot to update the switch statement for hive names
This commit is contained in:
runecap
2026-08-02 01:23:59 +00:00
committed by GitHub
parent d67d2c7912
commit 1c9bdb1516
2 changed files with 19 additions and 6 deletions
+6 -6
View File
@@ -259,12 +259,12 @@
personal_name += "[pick(name_sounds)]"
new_name += "[capitalize(personal_name)]"
switch(hive)
if("C'thur Hive")
new_name += "C'thur"
if("K'lax Hive")
new_name += "K'lax"
if("Zo'ra Hive")
new_name += "Zo'ra"
if("C'thur")
new_name += " C'thur"
if("K'lax")
new_name += " K'lax"
if("Zo'ra")
new_name += " Zo'ra"
else
var/list/hive_names = list("Zo'ra" = 3, "K'lax" = 1, "C'thur" = 1)
new_name += " [pickweight(hive_names)]"