From 4f034d3d805259200f0b9102e2620ea1726eb4fc Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Tue, 20 Mar 2018 19:22:21 -0400 Subject: [PATCH] VS: Fixes #2475 - Allow OOC escape from hardlight noms --- code/modules/vore/eating/living_vr.dm | 8 ++++++++ 1 file changed, 8 insertions(+) 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.")