From 6e67b60d6ef9ae26a6d73b91eba3518a3a69a8d2 Mon Sep 17 00:00:00 2001 From: AshTheDerg <60045745+AshTheDerg@users.noreply.github.com> Date: Fri, 27 Jan 2023 13:23:25 -0500 Subject: [PATCH] Borg Shaker Fix I fix it. --- .../modules/reagents/reagent_containers/borghydro.dm | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modular_splurt/code/modules/reagents/reagent_containers/borghydro.dm diff --git a/modular_splurt/code/modules/reagents/reagent_containers/borghydro.dm b/modular_splurt/code/modules/reagents/reagent_containers/borghydro.dm new file mode 100644 index 0000000000..4f9010daf3 --- /dev/null +++ b/modular_splurt/code/modules/reagents/reagent_containers/borghydro.dm @@ -0,0 +1,11 @@ +/obj/item/reagent_containers/borghypo/borgshaker/beershaker/Initialize() + var/list/extra_reagents = list( + /datum/reagent/consumable/ethanol/amaretto, + /datum/reagent/consumable/ethanol/applejack, + /datum/reagent/consumable/ethanol/curacao, + /datum/reagent/consumable/ethanol/hcider, + /datum/reagent/consumable/ethanol/navy_rum, + /datum/reagent/consumable/ethanol/sake, + /datum/reagent/consumable/ethanol + ) + LAZYADD(reagent_ids, extra_reagents)