mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-19 19:10:05 +01:00
Turned various spawns into timers / removed. Removed the magnet machinery and sd alerts, ancient code that was not used anywhere anyways.
10 lines
408 B
Plaintext
10 lines
408 B
Plaintext
/mob/abstract/observer/Logout()
|
|
..()
|
|
// This is one of very few spawn()s that we cannot get rid of
|
|
// Yes it needs to be like this
|
|
// No, you're not allowed to use spawn() yourself, unless you're making something that needs to work outside timers
|
|
// Don't be a dumbass, I will always be watching
|
|
spawn(0)
|
|
if(src && !key) //we've transferred to another mob. This ghost should be deleted.
|
|
qdel(src)
|