Files
integration/luprex/core/lua/basics.lua
2022-03-23 15:31:07 -04:00

8 lines
143 B
Lua

NilIsZero={
__index=function(t,k)
return 0
end,
__newindex=function(t,k,v)
if v~=nil and v~=0 then rawset(t,k,v) end
end }