aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr/GuiLua/skang.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ClientHamr/GuiLua/skang.lua')
-rw-r--r--ClientHamr/GuiLua/skang.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/ClientHamr/GuiLua/skang.lua b/ClientHamr/GuiLua/skang.lua
index fdd61de..74bebd4 100644
--- a/ClientHamr/GuiLua/skang.lua
+++ b/ClientHamr/GuiLua/skang.lua
@@ -881,9 +881,9 @@ thingasm = function (names, ...)
881 local args, err = loadstring('return ' .. thingy.widget) 881 local args, err = loadstring('return ' .. thingy.widget)
882 if args then 882 if args then
883 setfenv(args, parent) 883 setfenv(args, parent)
884 local result = widget(args()) 884 thingy.Cwidget = widget(args())
885print('NO IDEA WHY this does isValid() three times on the action, and the first one being a string.') 885print('\nNO IDEA WHY this does isValid() three times on the action, and the first one being a string.')
886 parent.W[name] = {Cwidget = result} 886 parent.W[name] = thingy
887 else 887 else
888 print("ERROR - " .. err) 888 print("ERROR - " .. err)
889 end 889 end