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