From 25705fc655996bb44772b82913c7418ee8371d79 Mon Sep 17 00:00:00 2001 From: lbnesquik Date: Mon, 11 Nov 2019 16:40:31 +0100 Subject: [PATCH] Ensure that EVERY mob give at least SOME nutrition when digested. This is a little hacky but this means the majority of the system doesn't have to be touched and retested. --- code/modules/vore/eating/bellymodes_vr.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index 39f480fda50..e7d58903cd6 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -186,6 +186,8 @@ digestion_death(M) if(!ishuman(owner)) owner.update_icons() + if(compensation == 0) //Slightly sloppy way at making sure certain mobs don't give ZERO nutrition (fish and so on) + compensation = 21 //This reads as 20*4.5 due to the calculations afterward, making the backup nutrition value 94.5 per mob. Not op compared to regular prey. if(compensation > 0) if(isrobot(owner)) var/mob/living/silicon/robot/R = owner