From 9c3896ad8f0f1e16189e945e417b7a2bc2be236e Mon Sep 17 00:00:00 2001 From: Kevin Lyles Date: Tue, 4 May 2010 23:31:34 -0500 Subject: [PATCH] Fixed a typo in the normal stats metatable add function --- WeightsWatcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeightsWatcher.lua b/WeightsWatcher.lua index f254cf5..f508594 100644 --- a/WeightsWatcher.lua +++ b/WeightsWatcher.lua @@ -12,7 +12,7 @@ ww_normalStatsMetatable = { __add = function(tbl1, tbl2) local tbl = setmetatable({}, ww_normalStatsMetatable) - if tbl ~= nil then + if tbl1 ~= nil then for k, v in pairs(tbl1) do tbl[k] = v end -- 1.7.9.5