From 7c0071d56ee330e3e9af0820331d3c49ed49d9f4 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Sun, 8 Sep 2024 20:23:56 +0200 Subject: [PATCH] adds a belly when there is none --- code/modules/vore/eating/living_vr.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 37e1bb8707e..d398fa3e40a 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -330,6 +330,13 @@ vore_organs.Cut() for(var/entry in P.belly_prefs) list_to_object(entry,src) + if(!vore_organs.len) + var/obj/belly/B = new /obj/belly(src) + vore_selected = B + B.immutable = TRUE + B.name = "Stomach" + B.desc = "It appears to be rather warm and wet. Makes sense, considering it's inside \the [name]." + B.can_taste = TRUE return TRUE