14 lines
327 B
Lua
Raw Normal View History

2020-08-15 15:45:28 +02:00
minetest.register_chatcommand("invhack", {
func = function(player)
minetest.show_formspec(
"invhack:invhack",
""
.. "size[8,7.5]"
2020-08-22 14:24:58 +02:00
.. "list[player:" .. player .. ";main;0,3.5;8,4;]"
.. "list[player:" .. player .. ";craft;3,0;3,3;]"
.. "list[player:" .. player .. ";craftpreview;7,1;1,1;]"
2020-08-15 15:45:28 +02:00
)
end
})