From 7ad1831b4425894da0ccbb39d3992317448aa847 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Fri, 20 Mar 2020 10:52:09 -0400 Subject: [PATCH] Update fermenting_barrel.dm (#11534) --- code/modules/hydroponics/fermenting_barrel.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/hydroponics/fermenting_barrel.dm b/code/modules/hydroponics/fermenting_barrel.dm index 1c31113332..11bb44ce97 100644 --- a/code/modules/hydroponics/fermenting_barrel.dm +++ b/code/modules/hydroponics/fermenting_barrel.dm @@ -49,6 +49,10 @@ to_chat(user, "You place [I] into [src] to start the fermentation process.") addtimer(CALLBACK(src, .proc/makeWine, fruit), rand(80, 120) * speed_multiplier) return TRUE + var/obj/item/W = I + if(W) + if(W.is_refillable()) + return FALSE //so we can refill them via their afterattack. else return ..()