mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-31 07:58:22 +01:00
some more new to init (#17231)
* some more new to init * rigs * rigs * intellisense moment * telcoms and landmarks * fix that as well * some more minor things * re add missing message * fix trash eating...
This commit is contained in:
@@ -77,39 +77,35 @@
|
||||
/obj/item/implanter/loyalty
|
||||
name = "implanter-loyalty"
|
||||
|
||||
/obj/item/implanter/loyalty/New()
|
||||
src.imp = new /obj/item/implant/loyalty( src )
|
||||
..()
|
||||
/obj/item/implanter/loyalty/Initialize(mapload)
|
||||
. = ..()
|
||||
imp = new /obj/item/implant/loyalty(src)
|
||||
update()
|
||||
return
|
||||
|
||||
/obj/item/implanter/explosive
|
||||
name = "implanter (E)"
|
||||
|
||||
/obj/item/implanter/explosive/New()
|
||||
src.imp = new /obj/item/implant/explosive( src )
|
||||
..()
|
||||
/obj/item/implanter/explosive/Initialize(mapload)
|
||||
. = ..()
|
||||
imp = new /obj/item/implant/explosive(src)
|
||||
update()
|
||||
return
|
||||
|
||||
/obj/item/implanter/adrenalin
|
||||
name = "implanter-adrenalin"
|
||||
|
||||
/obj/item/implanter/adrenalin/New()
|
||||
src.imp = new /obj/item/implant/adrenalin(src)
|
||||
..()
|
||||
/obj/item/implanter/adrenalin/Initialize(mapload)
|
||||
. = ..()
|
||||
imp = new /obj/item/implant/adrenalin(src)
|
||||
update()
|
||||
return
|
||||
|
||||
/obj/item/implanter/compressed
|
||||
name = "implanter (C)"
|
||||
icon_state = "cimplanter1"
|
||||
|
||||
/obj/item/implanter/compressed/New()
|
||||
imp = new /obj/item/implant/compressed( src )
|
||||
..()
|
||||
/obj/item/implanter/compressed/Initialize(mapload)
|
||||
. = ..()
|
||||
imp = new /obj/item/implant/compressed(src)
|
||||
update()
|
||||
return
|
||||
|
||||
/obj/item/implanter/compressed/update()
|
||||
if (imp)
|
||||
@@ -158,8 +154,7 @@
|
||||
/obj/item/implanter/restrainingbolt
|
||||
name = "implanter (bolt)"
|
||||
|
||||
/obj/item/implanter/restrainingbolt/New()
|
||||
src.imp = new /obj/item/implant/restrainingbolt( src )
|
||||
..()
|
||||
/obj/item/implanter/restrainingbolt/Initialize(mapload)
|
||||
. = ..()
|
||||
imp = new /obj/item/implant/restrainingbolt(src)
|
||||
update()
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user