Append instead of recreating a new list.

This commit is contained in:
ESwordTheCat
2014-05-27 21:50:25 -08:00
parent e8fabb8b3d
commit 36a8e543e5

View File

@@ -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)