allow false values to be inherited

This commit is contained in:
Axel Kittenberger 2010-12-05 08:08:29 +00:00
parent a9eab69298
commit 851280af4f
1 changed files with 1 additions and 1 deletions

View File

@ -1484,7 +1484,7 @@ local Syncs = (function()
-- first copies from source all
-- non-defined non-integer keyed values
for k, v in pairs(cs) do
if type(k) ~= "number" and not cd[k] then
if type(k) ~= "number" and cd[k] == nil then
cd[k] = v
end
end