mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 22:12:58 +01:00
Ports /tg/ spatial grid system, refactors telecomms, destroys lag (#15140)
This commit is contained in:
@@ -175,14 +175,13 @@
|
||||
|
||||
/obj/item/device/assembly_holder/Initialize(mapload, ...)
|
||||
. = ..()
|
||||
listening_objects += src
|
||||
become_hearing_sensitive()
|
||||
|
||||
/obj/item/device/assembly_holder/Destroy()
|
||||
if(a_left)
|
||||
a_left.holder = null
|
||||
if(a_right)
|
||||
a_right.holder = null
|
||||
listening_objects -= src
|
||||
return ..()
|
||||
|
||||
/obj/item/device/assembly_holder/hear_talk(mob/living/M, msg, verb, datum/language/speaking)
|
||||
@@ -243,4 +242,4 @@
|
||||
name = "[initial(name)] ([tmr.time] secs)"
|
||||
to_chat(usr, SPAN_NOTICE("Timer set to [tmr.time] seconds."))
|
||||
else
|
||||
to_chat(usr, SPAN_WARNING("You cannot do this while [usr.stat ? "unconscious/dead" : "restrained"]."))
|
||||
to_chat(usr, SPAN_WARNING("You cannot do this while [usr.stat ? "unconscious/dead" : "restrained"]."))
|
||||
|
||||
@@ -11,10 +11,9 @@
|
||||
|
||||
/obj/item/device/assembly/voice/Initialize(mapload, ...)
|
||||
. = ..()
|
||||
listening_objects += src
|
||||
become_hearing_sensitive()
|
||||
|
||||
/obj/item/device/assembly/voice/Destroy()
|
||||
listening_objects -= src
|
||||
return ..()
|
||||
|
||||
/obj/item/device/assembly/voice/hear_talk(mob/living/M, msg)
|
||||
@@ -41,4 +40,4 @@
|
||||
|
||||
/obj/item/device/assembly/voice/toggle_secure()
|
||||
. = ..()
|
||||
listening = FALSE
|
||||
listening = FALSE
|
||||
|
||||
Reference in New Issue
Block a user