diff options
| author | William Weaver <paperwork.resident@gmail.com> | 2025-04-02 04:23:07 +0300 |
|---|---|---|
| committer | William Weaver <paperwork.resident@gmail.com> | 2025-04-02 04:23:07 +0300 |
| commit | f0ad01c7dd875ddb6d963e55da8d88cbcd7be6aa (patch) | |
| tree | ef8a303108f3402fd92a7a95910f44ec09437e97 /indra/llinventory | |
| parent | be595b440321dcad842be5d982d20fd601bb8b4c (diff) | |
| parent | 6110028012181f445d5f7de2a73a5bf7adb0097c (diff) | |
Merge branch 'fix/xui-parsing-fixes' of https://github.com/williamweaver/viewer into fix/xui-parsing-fixes
Diffstat (limited to 'indra/llinventory')
| -rw-r--r-- | indra/llinventory/llparcel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llinventory/llparcel.h b/indra/llinventory/llparcel.h index 67d713db1f..759638b956 100644 --- a/indra/llinventory/llparcel.h +++ b/indra/llinventory/llparcel.h @@ -262,6 +262,8 @@ public: void setMediaURLResetTimer(F32 time); virtual void setLocalID(S32 local_id); + void setRegionID(const LLUUID& id) { mRegionID = id; } + const LLUUID& getRegionID() const { return mRegionID; } // blow away all the extra stuff lurking in parcels, including urls, access lists, etc void clearParcel(); @@ -651,6 +653,7 @@ public: S32 mLocalID; LLUUID mBanListTransactionID; LLUUID mAccessListTransactionID; + LLUUID mRegionID; std::map<LLUUID,LLAccessEntry> mAccessList; std::map<LLUUID,LLAccessEntry> mBanList; std::map<LLUUID,LLAccessEntry> mTempBanList; |
