mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
Append instead of recreating a new list.
This commit is contained in:
@@ -188,10 +188,10 @@
|
|||||||
if(ismob(A))
|
if(ismob(A))
|
||||||
var/mob/M = A
|
var/mob/M = A
|
||||||
if(M.client)
|
if(M.client)
|
||||||
hear += M
|
hear.Add(M)
|
||||||
//world.log << "Start = [M] - [get_turf(M)] - ([M.x], [M.y], [M.z])"
|
//world.log << "Start = [M] - [get_turf(M)] - ([M.x], [M.y], [M.z])"
|
||||||
else if(istype(A, /obj/item/device/radio))
|
else if(istype(A, /obj/item/device/radio))
|
||||||
hear += A
|
hear.Add(A)
|
||||||
|
|
||||||
hear = recursive_mob_check(A, hear, 3, 1, 0, 1)
|
hear = recursive_mob_check(A, hear, 3, 1, 0, 1)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user