From f578bed70d3583e459ec4aebccade59278b9f572 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Mon, 30 Mar 2020 16:27:25 -0400 Subject: [PATCH] Fix two runtimes in examine --- code/modules/mob/mob.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index d977a265f7..47b82f15c4 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -223,6 +223,10 @@ if((is_blind(src) || usr.stat) && !isobserver(src)) to_chat(src, "Something is there but you can't see it.") return 1 + + //Could be gone by the time they finally pick something + if(!A) + return 1 face_atom(A) A.examine(src)