Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update worldedit_gui to work with latest unified_inventory.
  • Loading branch information
Uberi committed Dec 22, 2013
1 parent 4e78ced commit c43d964
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions worldedit_gui/init.lua
Expand Up @@ -67,7 +67,6 @@ local get_formspec = function(name, identifier)
return worldedit.pages["worldedit_gui"].get_formspec(name) --default to showing main page if an unknown page is given
end


if unified_inventory then
local old_func = worldedit.register_gui_function
worldedit.register_gui_function = function(identifier, options)
Expand All @@ -82,7 +81,10 @@ if unified_inventory then

minetest.register_on_player_receive_fields(function(player, formname, fields)
local name = player:get_player_name()
if fields.worldedit_gui_exit then
if fields.worldedit_gui then --main page
worldedit.show_page(name, "worldedit_gui")
return true
elseif fields.worldedit_gui_exit then --return to original page
unified_inventory.set_inventory_formspec(minetest.get_player_by_name(name), "craft")
return true
end
Expand Down

0 comments on commit c43d964

Please sign in to comment.