diff --git a/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs b/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs index 51f48e6927..78e0725d9f 100644 --- a/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs +++ b/Content.Client/Decals/UI/DecalPlacerWindow.xaml.cs @@ -20,7 +20,7 @@ public sealed partial class DecalPlacerWindow : DefaultWindow private PaletteColorPicker? _picker; - private Dictionary? _decals; + private SortedDictionary? _decals; private string? _selected; private Color _color = Color.White; private bool _useColor; @@ -170,7 +170,7 @@ public sealed partial class DecalPlacerWindow : DefaultWindow public void Populate(IEnumerable prototypes) { - _decals = new Dictionary(); + _decals = new SortedDictionary(); foreach (var decalPrototype in prototypes) { if (decalPrototype.ShowMenu)