added mime names from TG, mimes can now pick name on entry

This commit is contained in:
uraniummeltdown
2017-01-08 15:45:14 +04:00
parent cb328a1742
commit f35f52b89a
3 changed files with 28 additions and 0 deletions

View File

@@ -494,6 +494,9 @@
if(mind.assigned_role == "Clown") //give them a clownname if they are a clown
new_character.real_name = pick(clown_names) //I hate this being here of all places but unfortunately dna is based on real_name!
new_character.rename_self("clown")
else if(mind.assigned_role == "Mime")
new_character.real_name = pick(mime_names)
new_character.rename_self("mime")
else if(new_character.species == "Diona")
new_character.real_name = pick(diona_names) //I hate this being here of all places but unfortunately dna is based on real_name!
new_character.rename_self("diona")