From 4f611a31ff22e418056a7042b3c87aa41540f243 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Fri, 24 Jan 2020 16:57:30 +0100 Subject: [PATCH] viewers() instead of get_hearers_in_view() --- modular_citadel/code/_onclick/other_mobs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_citadel/code/_onclick/other_mobs.dm b/modular_citadel/code/_onclick/other_mobs.dm index 8b9f3b3184..6d9ffdd6ca 100644 --- a/modular_citadel/code/_onclick/other_mobs.dm +++ b/modular_citadel/code/_onclick/other_mobs.dm @@ -18,7 +18,7 @@ if(!has_active_hand()) to_chat(src, "You ponder your life choices and sigh.") return TRUE - var/list/src_viewers = get_hearers_in_view(DEFAULT_MESSAGE_RANGE, src) - src // src has a different message. + var/list/src_viewers = viewers(DEFAULT_MESSAGE_RANGE, src) - src // src has a different message. var/the_action = "waves to [A]" var/what_action = "waves to something you can't see" var/self_action = "wave to [A]"