mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
They're not the same type.
This commit is contained in:
@@ -193,15 +193,15 @@
|
|||||||
listeners += M
|
listeners += M
|
||||||
continue
|
continue
|
||||||
|
|
||||||
listeners |= M
|
listeners += M
|
||||||
listeners = recursive_mob_check(A, listeners, 3, 1, 0, 1)
|
listeners = recursive_mob_check(A, listeners, 3, 1, 0, 1)
|
||||||
else if(istype(A, /obj/item/device/radio))
|
else if(istype(A, /obj/item/device/radio))
|
||||||
listeners |= A
|
listeners += A
|
||||||
|
|
||||||
// Don't include if the player is not connected.
|
// Don't include if the player is not connected.
|
||||||
for (var/mob/Mob in hear)
|
for (var/mob/Mob in hear)
|
||||||
if (isnull(Mob.client))
|
if (isnull(Mob.client))
|
||||||
listeners ^= Mob
|
listeners -= Mob
|
||||||
|
|
||||||
return listeners
|
return listeners
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user