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

8 lines
143 B
Lua
Raw Normal View History

2022-03-23 15:31:07 -04:00
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 }