Skip to content

Commit

Permalink
Final bits
Browse files Browse the repository at this point in the history
  • Loading branch information
SabreML committed Feb 18, 2024
1 parent 890c4da commit 5e9ece2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion code/modules/mob/living/carbon/carbon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,11 @@
<BR>"}
show_browser(user, dat, name, "mob[name]")

/// TODO: Documentation (also a better proc name)
/**
* Called by [/mob/dead/observer/proc/do_observe] when a carbon mob is observed by a ghost with [/datum/preferences/var/auto_observe] enabled.
*
* Override with any extra behaviour on subtypes.
*/
/mob/living/carbon/proc/auto_observed(mob/dead/observer/observer)
SHOULD_CALL_PARENT(TRUE)

Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
observer.client.add_to_screen(checked_storage.storage_continue)
observer.client.add_to_screen(checked_storage.storage_end)

// Players can only look in one inventory at a time, so skip any others.
// Players are only able to look in one inventory at a time, so skip any others.
break

// called when something steps onto a human
Expand Down

0 comments on commit 5e9ece2

Please sign in to comment.