]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Chem master more unit transfer buttons (#36995)
authorabadaba695 <spacestation13thingy@gmail.com>
Tue, 29 Apr 2025 10:24:56 +0000 (20:24 +1000)
committerGitHub <noreply@github.com>
Tue, 29 Apr 2025 10:24:56 +0000 (12:24 +0200)
* 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
Content.Shared/Chemistry/SharedChemMaster.cs

index e264b859a017a8bee21807079c733ee4102e92f3..14b55066e9e9df3c5c13828881444cf263be9aa1 100644 (file)
@@ -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),
index 67bd9a0d6395134f6dbd6a38f3b716dc81534082..cabee465eaa3d9cf4c24f85ba7af81227a9b8052 100644 (file)
@@ -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,