diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-06-08 19:13:26 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-06-08 19:13:26 -0700 |
commit | b73563f9fa84aa9372880c7d855ed0a8bac6ffb9 (patch) | |
tree | 0faa06e50a225a94cb34fa8b612deb3bc49df2f2 /indra | |
parent | 047ff479b7c87a80121c34c04137c113c7a02203 (diff) |
EXP-1953: Ensuring to send the IM_LURE_DECLINED message back to the inviter.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llviewermessage.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index be76b72891..3c7760eca7 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -2991,6 +2991,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data) params.payload = payload; LLPostponedNotification::add<LLPostponedOfferNotification>( params, from_id, false); send_simple_im(from_id, LLTrans::getString("TeleportMaturityExceeded"), IM_NOTHING_SPECIAL, session_id); + send_simple_im(from_id, LLStringUtil::null, IM_LURE_DECLINED, session_id); } else if (doesUserRequireMaturityIncrease) { @@ -3085,6 +3086,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data) params.payload = payload; LLPostponedNotification::add<LLPostponedOfferNotification>( params, from_id, false); send_simple_im(from_id, LLTrans::getString("TeleportMaturityExceeded"), IM_NOTHING_SPECIAL, session_id); + send_simple_im(from_id, LLStringUtil::null, IM_LURE_DECLINED, session_id); } else if (doesUserRequireMaturityIncrease) { |