Upload mod

This commit is contained in:
Coder12a
2018-11-05 20:05:04 -06:00
parent 16c5401b2e
commit 1d11788eba
10 changed files with 1146 additions and 429 deletions

8
init.lua Normal file
View File

@ -0,0 +1,8 @@
modpath = minetest.get_modpath("colddb")
local ie = minetest.request_insecure_environment()
if ie then
loadfile(modpath .. "/colddb.lua")(ie)
else
dofile(modpath .. "/colddb.lua")
end