Update fermenting_barrel.dm (#11534)

This commit is contained in:
Trilbyspaceclone
2020-03-20 10:52:09 -04:00
committed by GitHub
parent e3990fc4cc
commit 7ad1831b44
@@ -49,6 +49,10 @@
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())
return FALSE //so we can refill them via their afterattack.
else
return ..()