From dc5720bc86a1a8fc1501ba992a46d3e5c3290205 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 14 Mar 2022 02:42:07 +1100 Subject: [PATCH] Fix non-roundstart species showing up... at roundstart (#7108) --- Content.Client/Preferences/UI/HumanoidProfileEditor.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);