From 86ee636b191c88b4bedf11e5722ab87339e3bc4e Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 22 Nov 2018 17:27:55 +0200 Subject: [PATCH] Fixes ingested organs giving way too much fat Oh god I just realized the slow item digestion code made hardvored bodyparts have the calorie content of nuclear fuel. --- code/modules/vore/eating/digest_act_vr.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/digest_act_vr.dm b/code/modules/vore/eating/digest_act_vr.dm index 2641a437008..0fe4d295c5e 100644 --- a/code/modules/vore/eating/digest_act_vr.dm +++ b/code/modules/vore/eating/digest_act_vr.dm @@ -98,7 +98,11 @@ /obj/item/organ/digest_act(var/atom/movable/item_storage = null) if((. = ..())) - . += 70 //Organs give a little more + if(isbelly(item_storage)) + var/obj/belly/B = item_storage + . += 5 * (B.digest_brute + B.digest_burn) + else + . += 70 //Organs give a little more /obj/item/weapon/storage/digest_act(var/atom/movable/item_storage = null) for(var/obj/item/I in contents) @@ -115,4 +119,4 @@ // Gradual damage measurement /obj/item - var/digest_stage = null \ No newline at end of file + var/digest_stage = null