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