Awaken, code.

This commit is contained in:
Ghommie
2019-05-21 22:45:59 +02:00
parent b5b54c9f9f
commit 5e4bbb0d02
11 changed files with 183 additions and 98 deletions
@@ -414,3 +414,16 @@
/obj/item/radio/off // Station bounced radios, their only difference is spawning with the speakers off, this was made to help the lag.
listening = 0 // And it's nice to have a subtype too for future features.
dog_fashion = /datum/dog_fashion/back
/obj/item/radio/internal
var/obj/item/implant/radio/implant
/obj/item/radio/internal/Initialize(mapload, obj/item/implant/radio/_implant)
. = ..()
implant = _implant
/obj/item/radio/internal/Destroy()
if(implant?.imp_in)
qdel(implant)
else
return ..()