Convert most mobs to Initialize() (#2540)

I'm sure this won't break anything at all.
This commit is contained in:
Lohikar
2017-05-31 22:58:54 +03:00
committed by skull132
parent 69bd8e5ae1
commit 03bf22eee6
42 changed files with 178 additions and 178 deletions
+3 -4
View File
@@ -45,8 +45,8 @@ var/list/cleanbot_types // Going to use this to generate a list of types once th
if(istype(crossed,/mob/living/bot/cleanbot)) return 0
return ..()
/mob/living/bot/cleanbot/New()
..()
/mob/living/bot/cleanbot/Initialize()
. = ..()
get_targets()
listener = new /obj/cleanbot_listener(src)
@@ -54,8 +54,7 @@ var/list/cleanbot_types // Going to use this to generate a list of types once th
janitorial_supplies |= src
if(SSradio)
SSradio.add_object(listener, beacon_freq, filter = RADIO_NAVBEACONS)
SSradio.add_object(listener, beacon_freq, filter = RADIO_NAVBEACONS)
/mob/living/bot/cleanbot/Destroy()
. = ..()