diff --git a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs index 332de34345..a36cc2fe54 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs +++ b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml.cs @@ -58,6 +58,8 @@ namespace Content.Client.Chemistry.UI return; ChemicalList.Children.Clear(); + //Sort inventory by reagentLabel + inventory.Sort((x, y) => x.Value.Key.CompareTo(y.Value.Key)); foreach (KeyValuePair> entry in inventory) {