diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-06-21 10:02:23 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-06-21 10:02:23 -0400 |
commit | df0afb59486855b90ca565149564644a76dfee34 (patch) | |
tree | cff2132f8acc01efc7ce270dfbf63b14397f5538 /indra/newview/llviewermessage.cpp | |
parent | 6d29c1fcf80441cc4619e672ca07469cc3efe100 (diff) | |
parent | b16209f86a376cadfcc9f43604618de7fdc789e7 (diff) |
Merge branch 'release/luau-scripting' into lua-login
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rw-r--r-- | indra/newview/llviewermessage.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 01d4695eda..26b088e390 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -2749,6 +2749,11 @@ void process_chat_from_simulator(LLMessageSystem *msg, void **user_data) msg_notify["from_id"] = chat.mFromID; msg_notify["source_type"] = chat.mSourceType; on_new_message(msg_notify); + + + msg_notify["chat_type"] = chat.mChatType; + msg_notify["message"] = mesg; + LLEventPumps::instance().obtain("LLNearbyChat").post(msg_notify); } } |