Fixes food not getting digested on itemweak.

Well it would have been digesting if the belly had enough damage to oneshot it with the slow code. The problem was just that the itemweak mode was only applying one single hit on the food before excluding it from the loop for some reason.
This commit is contained in:
Verkister
2019-01-01 13:58:46 +02:00
committed by GitHub
parent 3ba4a9005a
commit d90593d689

View File

@@ -87,7 +87,8 @@
else if(isrobot(B.owner))
var/mob/living/silicon/robot/R = B.owner
R.cell.charge += 150
qdel(src)
return w_class
. = ..()
/obj/item/weapon/holder/digest_act(var/atom/movable/item_storage = null)