From 8245474fdc26d7f0a01f2218adaab87d36c796f7 Mon Sep 17 00:00:00 2001 From: abadaba695 Date: Tue, 29 Apr 2025 20:24:56 +1000 Subject: [PATCH] Chem master more unit transfer buttons (#36995) * Changes chem master unit transfers to be the same as the chem dispenser * adds chem master transfer buttons for 15u, 20u, and 30u --- Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs | 3 +++ Content.Shared/Chemistry/SharedChemMaster.cs | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs index e264b859a0..14b55066e9 100644 --- a/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs +++ b/Content.Client/Chemistry/UI/ChemMasterWindow.xaml.cs @@ -116,7 +116,10 @@ namespace Content.Client.Chemistry.UI ("1", ChemMasterReagentAmount.U1, StyleBase.ButtonOpenBoth), ("5", ChemMasterReagentAmount.U5, StyleBase.ButtonOpenBoth), ("10", ChemMasterReagentAmount.U10, StyleBase.ButtonOpenBoth), + ("15", ChemMasterReagentAmount.U15, StyleBase.ButtonOpenBoth), + ("20", ChemMasterReagentAmount.U20, StyleBase.ButtonOpenBoth), ("25", ChemMasterReagentAmount.U25, StyleBase.ButtonOpenBoth), + ("30", ChemMasterReagentAmount.U30, StyleBase.ButtonOpenBoth), ("50", ChemMasterReagentAmount.U50, StyleBase.ButtonOpenBoth), ("100", ChemMasterReagentAmount.U100, StyleBase.ButtonOpenBoth), (Loc.GetString("chem-master-window-buffer-all-amount"), ChemMasterReagentAmount.All, StyleBase.ButtonOpenLeft), diff --git a/Content.Shared/Chemistry/SharedChemMaster.cs b/Content.Shared/Chemistry/SharedChemMaster.cs index 67bd9a0d63..cabee465ea 100644 --- a/Content.Shared/Chemistry/SharedChemMaster.cs +++ b/Content.Shared/Chemistry/SharedChemMaster.cs @@ -106,7 +106,10 @@ namespace Content.Shared.Chemistry U1 = 1, U5 = 5, U10 = 10, + U15 = 15, + U20 = 20, U25 = 25, + U30 = 30, U50 = 50, U100 = 100, All, -- 2.51.2