Skip to content
Snippets Groups Projects
Commit 2edb20fd authored by dg's avatar dg
Browse files

fix temp values

git-svn-id: http://svn.net-core.org/repos/t-engine4@3153 51575b47-30f0-44d4-a5cc-537603b46e54
parent c5529709
No related branches found
No related tags found
No related merge requests found
......@@ -554,7 +554,7 @@ function _M:removeTemporaryValue(prop, id, noupdate)
-- The recursive enclosure
local recursive
recursive = function(base, prop, v)
recursive = function(base, prop, v, method)
method = self.temporary_values_conf[prop] or method
if type(v) == "number" then
-- Simple addition
......@@ -571,7 +571,7 @@ function _M:removeTemporaryValue(prop, id, noupdate)
base[prop] = base[prop] - v
end
self:onTemporaryValueChange(prop, -v, base)
print("delTmpVal", prop, v)
print("delTmpVal", prop, v, method)
elseif type(v) == "table" then
for k, e in pairs(v) do
recursive(base[prop], k, e, method)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment