From d31a492dd6726bc79754260191e9b1288e08e659 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Sun, 28 Nov 2021 21:34:22 -0500 Subject: [PATCH] Liddolfix --- code/modules/vore/eating/living_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index d6fdb91eb28..a5063f36fb1 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -706,10 +706,10 @@ to_chat(src, "You can taste the submissiveness in the wearer of [I]!") else if(iscapturecrystal(I)) var/obj/item/capture_crystal/C = I - if(C.bound_mob && C.bound_mob in C.contents) + if(C.bound_mob && (C.bound_mob in C.contents)) if(isbelly(C.loc)) var/obj/belly/B = C.loc - to_chat(C.bound_mob, "Outside of your crystal, you can see; [B.desc]") + to_chat(C.bound_mob, "Outside of your crystal, you can see; [B.desc]") to_chat(src, "You can taste the the power of command.") else to_chat(src, "You can taste the flavor of garbage. Delicious.")