Remember last formspec on re-opening

This commit is contained in:
Jean-Patrick Guerrero 2016-03-17 01:10:34 +01:00
parent cf51f9defa
commit 852b07f8e4
1 changed files with 8 additions and 5 deletions

View File

@ -147,10 +147,13 @@ minetest.register_craftitem(":xdecor:crafting_guide", {
groups = {book=1},
on_use = function(itemstack, user)
local player_name = user:get_player_name()
if not datas[player_name] then
datas[player_name] = {}
craftguide:get_items(nil, player_name)
craftguide:get_formspec(itemstack, 1, nil, 1, "", player_name)
else
minetest.show_formspec(player_name, "xdecor:crafting_guide", datas[player_name].formspec)
end
end
})