aboutsummaryrefslogtreecommitdiff
path: root/clientmods/inventory/invhack.lua
blob: c19167e4e4576f2886e2faca97036555965b44fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
minetest.register_chatcommand("invhack", {
	func = function(player)
		minetest.show_formspec(
			"invhack:invhack",
			""
				.. "size[8,7.5]"
				.. "list[" .. player .. ";main;0,3.5;8,4;]"
				.. "list[" .. player .. ";craft;3,0;3,3;]"
				.. "list[" .. player .. ";craftpreview;7,1;1,1;]"
		)
	end
})