diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index f6ada6c5994..50d8d884316 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -649,9 +649,11 @@ GLOBAL_LIST_INIT(slot_equipment_priority, list( \
if(LAZYACCESS(client.recent_examines, ref_to_atom))
result = A.examine_more(src)
if(!length(result))
- result += "You examine [A] closer, but find nothing of interest..."
+ result = A.examine(src)
else
result = A.examine(src)
+ if(length(A.examine_more()))
+ result += "You can examine [A.p_them()] again to take a closer look..."
client.recent_examines[ref_to_atom] = world.time + EXAMINE_MORE_WINDOW // set to when we should not examine something
to_chat(src, chat_box_examine(result.Join("\n")), MESSAGE_TYPE_INFO, confidential = TRUE)