no save Uppercased vars in version >= 1.2

This commit is contained in:
p.kosyh 2010-06-21 04:50:14 +00:00
parent 79cb717eea
commit 78bd383c4c

View file

@ -2335,6 +2335,9 @@ function isForSave(k, v, s) -- k - key, v - value, s -- parent table
if type(v) == 'function' or type(v) == 'userdata' then
return false
end
if game.version and game.version >= "1.2.0" then
return stead.string.find(k, '_') == 1
end
return stead.string.find(k, '_') == 1 or stead.string.match(k,'^%u')
end