aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/LSL.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/LSL.lua b/lib/LSL.lua
index 713a605..5d728c7 100644
--- a/lib/LSL.lua
+++ b/lib/LSL.lua
@@ -630,6 +630,9 @@ end
630function --[[string]] LSL.llList2String(--[[list]] l,--[[integer]] index) 630function --[[string]] LSL.llList2String(--[[list]] l,--[[integer]] index)
631 local result = l[index+1] 631 local result = l[index+1]
632 632
633 if 'boolean' == type(result) then
634 if result then result = 'true' else result = 'false' end
635 end
633 if 'table' == type(result) then 636 if 'table' == type(result) then
634 -- Figure out if things are vectors or rotations, so we can output <> instead of []. 637 -- Figure out if things are vectors or rotations, so we can output <> instead of [].
635 if nil == result.x then 638 if nil == result.x then