Initial commit

This commit is contained in:
MCLx86
2021-12-21 18:09:12 -05:00
commit 5fb9897a36
431 changed files with 7241 additions and 0 deletions

11
mods/main/init.lua Normal file
View File

@@ -0,0 +1,11 @@
local modpath = minetest.get_modpath("main")
dofile(modpath.."/nodes.lua")
dofile(modpath.."/craftitems.lua")
dofile(modpath.."/mapgen.lua")
dofile(modpath.."/tools.lua")
minetest.register_on_joinplayer(function(player)
player:hud_set_hotbar_image("gui_hotbar.png")
player:hud_set_hotbar_selected_image("gui_hotbar_selected.png")
end)