From a7ab903b4eec423266d37db683a65664cdb1f920 Mon Sep 17 00:00:00 2001 From: Markolie Date: Tue, 10 Feb 2015 23:34:17 +0100 Subject: [PATCH] And another AI fix --- code/modules/mob/living/silicon/ai/freelook/eye.dm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/ai/freelook/eye.dm b/code/modules/mob/living/silicon/ai/freelook/eye.dm index cfeb8d5db32..8218bec993e 100644 --- a/code/modules/mob/living/silicon/ai/freelook/eye.dm +++ b/code/modules/mob/living/silicon/ai/freelook/eye.dm @@ -18,12 +18,21 @@ /mob/aiEye/Move() return 0 +// Hide popout menu verbs /mob/aiEye/examine(atom/A as mob|obj|turf in view()) set popup_menu = 0 set src = usr.contents return 0 + +/mob/aiEye/pull() + set popup_menu = 0 + set src = usr.contents + return 0 -/mob/aiEye/examine(mob/user) +/mob/aiEye/point() + set popup_menu = 0 + set src = usr.contents + return 0 // Use this when setting the aiEye's location. // It will also stream the chunk that the new loc is in.