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

12 lines
227 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
2022-04-25 12:20:29 -04:00
makeclass('login')
2022-03-29 16:37:32 -04:00
function NilIsZero.__index(t,k)
2022-04-25 12:20:29 -04:00
return 0
end
2022-03-29 16:37:32 -04:00
function NilIsZero.__newindex(t,k,v)
2022-04-25 12:20:29 -04:00
if v~=nil and v~=0 then rawset(t,k,v) end
end
2022-03-29 16:37:32 -04:00