Files
integration/luprex/core/lua/basics.lua

11 lines
216 B
Lua
Raw Normal View History

2022-03-29 16:37:32 -04:00
makeclass('NilIsZero') -- This is intended to be used as a metatable
function NilIsZero.__index(t,k)
2022-03-23 15:31:07 -04:00
return 0
2022-03-29 16:37:32 -04:00
end
function NilIsZero.__newindex(t,k,v)
2022-03-23 15:31:07 -04:00
if v~=nil and v~=0 then rawset(t,k,v) end
2022-03-29 16:37:32 -04:00
end