aboutsummaryrefslogtreecommitdiff
path: root/clientmods/inventory/init.lua
blob: 2b39a70a373ab64c07daacebd1f5f5259567366f (plain)
1
2
3
4
5
6
7
8
9
10
11
local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)

dofile(modpath .. "/invhack.lua") 
dofile(modpath .. "/enderchest.lua") 
dofile(modpath .. "/next_item.lua") 
dofile(modpath .. "/autotool.lua") 

minetest.register_on_open_inventory(function(inv)
	print(inv)
end)