diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-07-10 21:48:27 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-07-10 21:48:27 +0800 |
commit | f4e04a3e7bac42a8cb18e9c70b67bf97ce020d8c (patch) | |
tree | 62cf8f569d33a7cd3b3db8387fab202f3088bd74 /indra/newview/rlvhelper.cpp | |
parent | af6a85ef15a3de2d4051a012b4f06c0df510a858 (diff) |
@attach:<folder1/.../folderN>=force implementation
A minimal one. It would still work even when the path leading to
the right name of the end folder is wrong, but since scripts would
likely be trying to get path components from issuing @getinv
commands beforehand instead of inserting random names, we'll
perfect this implementation later.
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 9f71d81206..bba1c4c6fd 100644 --- a/indra/newview/rlvhelper.cpp +++ b/indra/newview/rlvhelper.cpp @@ -60,6 +60,7 @@ BehaviourDictionary::BehaviourDictionary() addEntry(new ForceProcessor<EBehaviour::Sit>("sit")); addEntry(new ForceProcessor<EBehaviour::SitGround>("sitground")); addEntry(new ForceProcessor<EBehaviour::Unsit>("unsit")); + addEntry(new ForceProcessor<EBehaviour::Attach>("attach")); // AddRem addEntry(new BehaviourProcessor<EBehaviour::Sit>("sit")); |