Revert "Fix ghost double comms with new link allinone"

This commit is contained in:
cadyn
2021-03-05 14:00:51 -08:00
committed by GitHub
parent 976d43ef96
commit fc25da825e
3 changed files with 6 additions and 8 deletions

View File

@@ -224,7 +224,7 @@
return hear
var/mobs_radio_range_fired = 1 //CHOMPEdit
/proc/get_mobs_in_radio_ranges(var/list/obj/item/device/radio/radios, var/ghosts_can_hear = TRUE)
/proc/get_mobs_in_radio_ranges(var/list/obj/item/device/radio/radios)
set background = 1
var/our_iter = num2text(++mobs_radio_range_fired) //CHOMPEdit
@@ -251,7 +251,7 @@ var/mobs_radio_range_fired = 1 //CHOMPEdit
var/turf/T = get_turf(M)
if(istype(T) && T.temp_check[our_iter])
. += M
else if(istype(M,/mob/observer) && ghosts_can_hear) //Give ghosts global hearing.
else if(istype(M,/mob/observer)) //Give ghosts global hearing.
. += M
CHECK_TICK
for(var/turf/T in speaker_coverage)