diff --git a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs index 4c4c7dcc59..dcfd38ad77 100644 --- a/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs @@ -177,7 +177,7 @@ namespace Content.Client.Preferences.UI #region Species - _speciesList = prototypeManager.EnumeratePrototypes().ToList(); + _speciesList = prototypeManager.EnumeratePrototypes().Where(o => o.RoundStart).ToList(); for (var i = 0; i < _speciesList.Count; i++) { CSpeciesButton.AddItem(_speciesList[i].Name, i);