* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
/obj/item/device/radio/beacon
|
|
name = "tracking beacon"
|
|
desc = "A beacon used by a teleporter."
|
|
icon_state = "beacon"
|
|
item_state = "beacon"
|
|
var/code = "electronic"
|
|
origin_tech = "bluespace=1"
|
|
dog_fashion = null
|
|
|
|
/obj/item/device/radio/beacon/New()
|
|
..()
|
|
GLOB.teleportbeacons += src
|
|
|
|
/obj/item/device/radio/beacon/Destroy()
|
|
GLOB.teleportbeacons.Remove(src)
|
|
return ..()
|
|
|
|
/obj/item/device/radio/beacon/Hear(message, atom/movable/speaker, message_langs, raw_message, radio_freq, list/spans, message_mode)
|
|
return
|
|
|
|
/obj/item/device/radio/beacon/send_hear()
|
|
return null
|
|
|
|
|
|
/obj/item/device/radio/beacon/verb/alter_signal(t as text)
|
|
set name = "Alter Beacon's Signal"
|
|
set category = "Object"
|
|
set src in usr
|
|
|
|
if ((usr.canmove && !( usr.restrained() )))
|
|
src.code = t
|
|
if (!( src.code ))
|
|
src.code = "beacon"
|
|
src.add_fingerprint(usr)
|
|
return
|
|
|
|
/*
|
|
//Probably a better way of doing this, I'm lazy.
|
|
/obj/item/device/radio/beacon/bacon/proc/digest_delay()
|
|
spawn(600)
|
|
qdel(src)*/ //Bacon beacons are no more rip in peace
|