diff options
author | Rider Linden <rider@lindenlab.com> | 2024-10-14 12:49:43 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2024-10-14 14:51:56 -0700 |
commit | 2cd1f22f5b51708aaaf5d16a25847ef2c2832312 (patch) | |
tree | d40ccf40db721adf97780b33bab14b824c6cf4b4 /indra/llcommon | |
parent | 35b3842b08208b9f0a440498b21a8ff8688d8a48 (diff) |
Private Issue #297: Accept new flags in ScriptTeleportRequest message. Flags indicate if the world map should be opened and focused.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/indra_constants.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/indra_constants.h b/indra/llcommon/indra_constants.h index 566ea2ea14..a0394da281 100644 --- a/indra/llcommon/indra_constants.h +++ b/indra/llcommon/indra_constants.h @@ -355,5 +355,7 @@ constexpr U8 CLICK_ACTION_DISABLED = 8; constexpr U8 CLICK_ACTION_IGNORE = 9; // DO NOT CHANGE THE SEQUENCE OF THIS LIST!! +constexpr U32 BEACON_SHOW_MAP = 0x0001; +constexpr U32 BEACON_FOCUS_MAP = 0x0002; #endif |