diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-07-09 22:11:47 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-07-09 22:11:47 +0800 |
commit | 651df17f2c76b60b52c56a7cc35787a8ea87b246 (patch) | |
tree | 6321fbc042a30e86232dee1fe9dac1024c01e2aa /indra/newview/rlvhelper.cpp | |
parent | cd60b3e339c28d0cd86ca8a3bde5b2382a4b79b4 (diff) |
Partial @getinv=<channel> command implementation
Returns an empty string if #RLV folder doesn't contain any folder.
Listing sub-folders (folders under any folder under #RLV,
listed on the options) isn't implemented yet in this commit.
Diffstat (limited to 'indra/newview/rlvhelper.cpp')
-rw-r--r-- | indra/newview/rlvhelper.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/rlvhelper.cpp b/indra/newview/rlvhelper.cpp index b4abbc04f3..9f71d81206 100644 --- a/indra/newview/rlvhelper.cpp +++ b/indra/newview/rlvhelper.cpp @@ -51,6 +51,7 @@ BehaviourDictionary::BehaviourDictionary() // addEntry(new ReplyProcessor<EBehaviour::GetCommand>("getcommand")); addEntry(new ReplyProcessor<EBehaviour::GetSitID>("getsitid")); + addEntry(new ReplyProcessor<EBehaviour::GetInv>("getinv")); addEntry(new ReplyProcessor<EBehaviour::Version, VersionReplyHandler>("version")); addEntry(new ReplyProcessor<EBehaviour::VersionNew, VersionReplyHandler>("versionnew")); addEntry(new ReplyProcessor<EBehaviour::VersionNum>("versionnum")); |