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.")