diff --git a/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs b/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs index c9e184dfc2..c2510a3582 100644 --- a/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs +++ b/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs @@ -19,7 +19,31 @@ namespace Content.Client.Preferences.UI if (Profile == null) return; var name = HumanoidCharacterProfile.GetName(Profile.Species, Profile.Gender); SetName(name); - UpdateNameEdit(); + UpdateNamesEdit(); + } + + private void RandomizeClownName() + { + if (Profile == null) return; + var name = HumanoidCharacterProfile.GetClownName(); + SetClownName(name); + UpdateNamesEdit(); + } + + private void RandomizeMimeName() + { + if (Profile == null) return; + var name = HumanoidCharacterProfile.GetMimeName(); + SetMimeName(name); + UpdateNamesEdit(); + } + + private void RandomizeBorgName() + { + if (Profile == null) return; + var name = HumanoidCharacterProfile.GetBorgName(); + SetBorgName(name); + UpdateNamesEdit(); } } } diff --git a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml index ed8155877c..e18a7932b2 100644 --- a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml +++ b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml @@ -19,6 +19,21 @@