From 71ac8b108d2ed9e514d3cd5eb15c7d0f77f72eb9 Mon Sep 17 00:00:00 2001 From: s Date: Thu, 19 Mar 2020 13:37:59 -0400 Subject: [PATCH] maybe --- 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 d46f37d1580..aec3b232578 100644 --- a/code/modules/hydroponics/fermenting_barrel.dm +++ b/code/modules/hydroponics/fermenting_barrel.dm @@ -50,6 +50,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 0 //so we can refill them via their afterattack. else return ..()