Skip to content
This repository was archived by the owner on Nov 11, 2021. It is now read-only.

Commit 6436165

Browse files
MrMelbertGesugao-san
authored andcommitted
Fix double examine showing the examiner when nothing of interest was found (#62053)
1 parent 7f5711b commit 6436165

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

code/modules/mob/mob.dm

+3-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,9 @@
463463
addtimer(CALLBACK(src, .proc/clear_from_recent_examines, A), EXAMINE_MORE_TIME)
464464
handle_eye_contact(A)
465465
else
466-
result = A.examine_more(src)
466+
result = examinify.examine_more(src)
467+
if(!length(result))
468+
result += span_notice("<i>You examine [examinify] closer, but find nothing of interest...</i>")
467469
else
468470
result = A.examine(src) // if a tree is examined but no client is there to see it, did the tree ever really exist?
469471

0 commit comments

Comments
 (0)