aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr
diff options
context:
space:
mode:
Diffstat (limited to 'ClientHamr')
-rw-r--r--ClientHamr/GuiLua/skang.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/ClientHamr/GuiLua/skang.lua b/ClientHamr/GuiLua/skang.lua
index 53ba99b..5796361 100644
--- a/ClientHamr/GuiLua/skang.lua
+++ b/ClientHamr/GuiLua/skang.lua
@@ -696,7 +696,8 @@ __newindex = function (parent, key, value)
696 -- Deal with setting a new Keyed table entry. 696 -- Deal with setting a new Keyed table entry.
697 local newThing = copy(parent, key) 697 local newThing = copy(parent, key)
698 rawset(metaMum.__values, key, newThing) 698 rawset(metaMum.__values, key, newThing)
699 thingy = {names={key}, types={'table'}, parent=newThing, stuff=getmetatable(newThing).__self.stuff, } 699-- thingy = {names={key}, types={'table'}, parent=newThing, stuff=getmetatable(newThing).__self.stuff, }
700 thingy = {names={key}, types={'table'}, stuff=getmetatable(newThing).__self.stuff, }
700 setmetatable(thingy, {__index = Thing}) -- To pick up isValid, pattern, and the other stuff by default. 701 setmetatable(thingy, {__index = Thing}) -- To pick up isValid, pattern, and the other stuff by default.
701 end 702 end
702 end 703 end