From a8b1edab7e39989f9fd7eb39d64b3ce3c7345007 Mon Sep 17 00:00:00 2001 From: rhetorica Date: Thu, 11 Dec 2025 13:22:52 -0800 Subject: [PATCH] remove daemon_ prefix from announce --- ARES/api/effector.h.lsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARES/api/effector.h.lsl b/ARES/api/effector.h.lsl index dc5d5d1..49db974 100644 --- a/ARES/api/effector.h.lsl +++ b/ARES/api/effector.h.lsl @@ -70,7 +70,7 @@ #if defined(RING_NUMBER) && RING_NUMBER <= R_DAEMON #define play_sound(_name) daemon_to_daemon(E_EFFECTOR, SIGNAL_CALL, (string)avatar + " " + (string)avatar + " effector sound " + _name) - #define daemon_announce(_announcement) daemon_to_daemon(E_EFFECTOR, SIGNAL_CALL, (string)avatar + " " + (string)avatar + " effector announce " + _announcement) + #define announce(_announcement) daemon_to_daemon(E_EFFECTOR, SIGNAL_CALL, (string)avatar + " " + (string)avatar + " effector announce " + _announcement) #else #define play_sound(_name) e_call(C_EFFECTOR, E_SIGNAL_CALL, (string)avatar + " " + (string)avatar + " effector sound " + _name) #define announce(_announcement) e_call(C_EFFECTOR, E_SIGNAL_CALL, (string)avatar + " " + (string)avatar + " effector announce " + _announcement)