From 371e9cb2812a3f348e04d1afcb86adfa065c6f86 Mon Sep 17 00:00:00 2001 From: Alien <68290943+alien3301@users.noreply.github.com> Date: Mon, 24 Nov 2025 16:47:14 +0200 Subject: [PATCH] Gives the bartender a service plumbing constructor. (#93928) ## About The Pull Request Puts one service plumbing constructor in bartender's wardrobe vendor Lets plumbing constructors actually build the chemical teleporters (before this only the sender could be made) ## Why It's Good For The Game An alcohol factory isn't anything game changing. Not forcing the bartender to wait for very niche research nobody will ever do to play with it is a good thing ## Changelog :cl: Cat balance: Bartender's wardrobe vendor starts with a service plumbing constructor /:cl: --------- Co-authored-by: John Doe --- code/game/objects/items/rcd/RPLD.dm | 2 ++ code/modules/vending/wardrobes.dm | 1 + 2 files changed, 3 insertions(+) diff --git a/code/game/objects/items/rcd/RPLD.dm b/code/game/objects/items/rcd/RPLD.dm index e34dc1b174a..d14d78e6b99 100644 --- a/code/game/objects/items/rcd/RPLD.dm +++ b/code/game/objects/items/rcd/RPLD.dm @@ -310,6 +310,8 @@ name = "service plumbing constructor" desc = "A type of plumbing constructor designed to rapidly deploy the machines needed to make a brewery." icon_state = "plumberer_service" + ///Extra price because it appears in bartender's vendor + custom_premium_price = PAYCHECK_CREW * 6 ///Design types for plumbing service constructor var/static/list/service_design_types = list( //Category 1 synthesizers diff --git a/code/modules/vending/wardrobes.dm b/code/modules/vending/wardrobes.dm index 1d92e7448fc..6886c1ae418 100644 --- a/code/modules/vending/wardrobes.dm +++ b/code/modules/vending/wardrobes.dm @@ -422,6 +422,7 @@ GLOBAL_VAR_INIT(roaches_deployed, FALSE) ) premium = list( /obj/item/storage/box/dishdrive = 1, + /obj/item/construction/plumbing/service = 1, ) refill_canister = /obj/item/vending_refill/wardrobe/bar_wardrobe payment_department = ACCOUNT_MED