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.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/ClientHamr/GuiLua/skang.lua b/ClientHamr/GuiLua/skang.lua
index 4283489..fc93c0e 100644
--- a/ClientHamr/GuiLua/skang.lua
+++ b/ClientHamr/GuiLua/skang.lua
@@ -411,7 +411,7 @@ Thing.isValid = function (self, module) -- Check if this Thing is valid, return
411 -- Anything that overrides this method, should call this super method first. 411 -- Anything that overrides this method, should call this super method first.
412 local name = self.names[1] 412 local name = self.names[1]
413 local modThing = getmetatable(module) 413 local modThing = getmetatable(module)
414 local thingy = modThing.__stuff[name] 414 local thingy = modThing.__stuff[name] -- TODO - This should be the same as self?
415 local key = thingy.names[1]; 415 local key = thingy.names[1];
416 local value = modThing.__values[key] 416 local value = modThing.__values[key]
417 417