diff --git a/lslopt/lslextrafuncs.py b/lslopt/lslextrafuncs.py index 33d5364..cfa8fa0 100644 --- a/lslopt/lslextrafuncs.py +++ b/lslopt/lslextrafuncs.py @@ -228,6 +228,12 @@ def llGetAnimationList(id): return [] raise ELSLCantCompute +def llGetAttachedList(id): + id = fk(id) + if not cond(id): + return [u'NOT FOUND'] + raise ELSLCantCompute + def llGetBoundingBox(id): id = fk(id) if not cond(id):