From 7837621bb47132048c5b59e4125a122b34a0c34c Mon Sep 17 00:00:00 2001 From: Mycah142 <11076040+Mycah142@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:23:24 -0400 Subject: [PATCH] Club Showcase Now Includes Food (#8316) Club showcase now includes food --- code/game/machinery/vending.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index f869dd8afe8..40263c9ad88 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -970,15 +970,15 @@ auto_price = FALSE /obj/machinery/vending/drink_showcase - name = "Club Cocktail Showcase" - desc = "A vending machine to showcase cocktails." + name = "Club Showcase" + desc = "A vending machine to showcase cocktails and meals." icon_state = "showcase" var/icon_fill = "showcase-fill" vend_delay = 15 idle_power_usage = 211 //refrigerator - believe it or not, this is actually the average power consumption of a refrigerated vending machine according to NRCan. vendor_department = DEPARTMENT_CIVILIAN custom_vendor = TRUE - can_stock = list(/obj/item/reagent_containers/glass, /obj/item/reagent_containers/food/drinks, /obj/item/reagent_containers/food/condiment) + can_stock = list(/obj/item/reagent_containers/glass, /obj/item/reagent_containers/food) /obj/machinery/vending/drink_showcase/update_icon() ..()