Fix non-roundstart species showing up... at roundstart (#7108)

This commit is contained in:
metalgearsloth 2022-03-14 02:42:07 +11:00 committed by GitHub
parent 466f236bce
commit dc5720bc86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ namespace Content.Client.Preferences.UI
#region Species
_speciesList = prototypeManager.EnumeratePrototypes<SpeciesPrototype>().ToList();
_speciesList = prototypeManager.EnumeratePrototypes<SpeciesPrototype>().Where(o => o.RoundStart).ToList();
for (var i = 0; i < _speciesList.Count; i++)
{
CSpeciesButton.AddItem(_speciesList[i].Name, i);