From 218eaafc17d9811b82c8ff8b97d1e918a8de9319 Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 20 Oct 2022 20:22:44 +0300 Subject: [PATCH] Fixes liquidbelly stuff while buckled or resting Changed the incapacitation flag check from all types to relevant types. Now only blocked if dead/paralyzed/sleeping/fakedeath --- code/modules/vore/eating/living_ch.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/living_ch.dm b/code/modules/vore/eating/living_ch.dm index 1ccb14b852..46bd2fb3c5 100644 --- a/code/modules/vore/eating/living_ch.dm +++ b/code/modules/vore/eating/living_ch.dm @@ -111,7 +111,7 @@ set desc = "Transfer liquid from an organ to another or stomach, or into another person or container." set popup_menu = FALSE - if(!checkClickCooldown() || incapacitated(INCAPACITATION_ALL)) + if(!checkClickCooldown() || incapacitated(INCAPACITATION_KNOCKOUT)) return FALSE var/mob/living/user = usr @@ -275,4 +275,4 @@ set name = "Mute Vorgan Entrance" set category = "Preferences" set desc = "Mute the chatlog messages when something enters a vore belly." - mute_entry = !mute_entry \ No newline at end of file + mute_entry = !mute_entry