1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Add minetest.global_exists()

This commit is contained in:
ShadowNinja 2014-11-21 11:32:01 -05:00 committed by est31
parent 943c6e523e
commit 436cb468e9
2 changed files with 9 additions and 1 deletions

View file

@ -4,6 +4,11 @@
local WARN_INIT = false
function core.global_exists(name)
return rawget(_G, name) ~= nil
end
local function warn(message)
print(os.date("%H:%M:%S: WARNING: ")..message)
end