This commit is contained in:
2022-03-23 15:31:07 -04:00
parent a7cdedf82b
commit 2016394e15
2 changed files with 7 additions and 55 deletions

View File

@@ -0,0 +1,7 @@
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 }