From b49a39748b579d559d66a1e1b3d7acc94ff44fa1 Mon Sep 17 00:00:00 2001 From: metalgearsloth Date: Thu, 19 Sep 2024 17:57:15 +1000 Subject: [PATCH] squishy --- .../Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs index 3ad64a2130ef51..615f1434df229d 100644 --- a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs +++ b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs @@ -68,7 +68,7 @@ private IEnumerable GetPrototypes() { // Filter out any StartingGearPrototypes that belong to loadouts var loadouts = _prototypeManager.EnumeratePrototypes(); - var loadoutGears = loadouts.Select(l => l.Equipment); + var loadoutGears = loadouts.Select(l => l.StartingGear); return _prototypeManager.EnumeratePrototypes() .Where(p => !loadoutGears.Contains(p.ID)); }