Update fermenting_barrel.dm

This commit is contained in:
s
2020-03-25 18:53:30 -04:00
parent 6563b57ff0
commit 9e40d7ff51
@@ -50,9 +50,8 @@
to_chat(user, "<span class='notice'>You place [I] into [src] to start the fermentation process.</span>")
addtimer(CALLBACK(src, .proc/makeWine, fruit), rand(80, 120) * speed_multiplier)
return TRUE
var/obj/item/W = I
if(W)
if(W.is_refillable())
if(I)
if(I.is_refillable())
return FALSE //so we can refill them via their afterattack.
else
return ..()