From 178f383af47fa61e567d58db8ae7c67c7bd1e744 Mon Sep 17 00:00:00 2001 From: Verkister Date: Tue, 23 Nov 2021 21:50:55 +0200 Subject: [PATCH] Update digest_act_vr.dm --- code/modules/vore/eating/digest_act_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/digest_act_vr.dm b/code/modules/vore/eating/digest_act_vr.dm index 781ca082162..3d0486fd793 100644 --- a/code/modules/vore/eating/digest_act_vr.dm +++ b/code/modules/vore/eating/digest_act_vr.dm @@ -51,10 +51,10 @@ O.forceMove(item_storage) if(istype(src,/obj/item/stack)) var/obj/item/stack/S = src - if(S.amount <= 1) + if(S.get_amount() <= 1) qdel(src) else - S.amount-- + S.use(1) digest_stage = w_class else qdel(src)