mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
The logging is now stored in the persistent client/player_details datum, that will survive an entire round The existing mob log is retained and a new admin verb is added to access it. It will only show logs for the mob in question, across all players who possibly spent time in that mob A new log type is added that tracks the mobs the player changes across into and the times they occured, to better help admins manage complex situations, this also appears in the mob log as a record of the players who entered/exited control of the mob
13 lines
230 B
Plaintext
13 lines
230 B
Plaintext
/mob/Logout()
|
|
log_message("[key_name(src)] is no longer owning mob [src]", INDIVIDUAL_OWNERSHIP_LOG)
|
|
SStgui.on_logout(src)
|
|
unset_machine()
|
|
GLOB.player_list -= src
|
|
|
|
..()
|
|
|
|
if(loc)
|
|
loc.on_log(FALSE)
|
|
|
|
return TRUE
|