mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Admins cat see if other admin has left the game. The game actually checks for configuration variable guest_jobban (still be turned on by default). Added white list for heads and some non-heads (as in guest jobbans). Add keys to file data/whitelist.txt and turn on the option USEWHITELIST in config.txt. Cyborgs were added to the list of important jobs (for guests jobbans and whitelist). git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1568 316c924e-a436-60f5-8080-3fe189b3f50e
9 lines
170 B
Plaintext
9 lines
170 B
Plaintext
/mob/Logout()
|
|
log_access("Logout: [key_name(src)]")
|
|
if (admins[src.ckey])
|
|
message_admins("Admin logout: [key_name(src)]")
|
|
src.logged_in = 0
|
|
|
|
..()
|
|
|
|
return 1 |