Revert "new to init (the rest of them) part 1 (#17052)" (#17084)

This reverts commit d02c67d6de.
This commit is contained in:
Cameron Lennox
2025-02-07 11:09:08 -05:00
committed by GitHub
parent 43a8a1a5a6
commit 3ac6fb4edf
18 changed files with 108 additions and 386 deletions
@@ -268,15 +268,12 @@ var/global/list/obj/item/communicator/all_communicators = list()
// Parameters: None
// Description: Gives ghosts an exonet address based on their key and ghost name.
/mob/observer/dead/Initialize()
..()
return INITIALIZE_HINT_LATELOAD
/mob/observer/dead/LateInitialize()
. = ..()
exonet = new(src)
if(client)
exonet.make_address("communicator-[client]-[client.prefs.real_name]")
exonet.make_address("communicator-[src.client]-[src.client.prefs.real_name]")
else
exonet.make_address("communicator-[key]-[real_name]")
exonet.make_address("communicator-[key]-[src.real_name]")
// Proc: Destroy()
// Parameters: None
@@ -55,7 +55,4 @@
/obj/structure/ghost_pod/ghost_activated/Initialize(var/mapload)
. = ..()
if(!mapload)
return INITIALIZE_HINT_LATELOAD
/obj/structure/ghost_pod/LateInitialize()
ghostpod_startup(spawn_active)
ghostpod_startup(spawn_active)