diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index 952db5f9c0..8dbf5cefc7 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -347,6 +347,14 @@
//Actual escaping
log_and_message_admins("[key_name(src)] used the OOC escape button to get out of [key_name(pred)] (BORG) ([pred ? "JMP" : "null"])")
belly.go_out(src) //Just force-ejects from the borg as if they'd clicked the eject button.
+
+ //You're in an AI hologram!
+ else if(istype(loc, /obj/effect/overlay/aiholo))
+ var/obj/effect/overlay/aiholo/holo = loc
+ holo.drop_prey() //Easiest way
+ log_and_message_admins("[key_name(src)] used the OOC escape button to get out of [key_name(holo.master)] (AI HOLO) ([holo ? "JMP" : "null"])")
+
+ //Don't appear to be in a vore situation
else
to_chat(src,"You aren't inside anyone, though, is the thing.")