Skip to content

Commit 7a19c53

Browse files
rui914sfan5
authored andcommittedJan 5, 2016
Fix undeclared global variable
1 parent 35b68c4 commit 7a19c53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎worldedit_gui/init.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ local get_formspec = function(name, identifier)
6767
end
6868

6969
--implement worldedit.show_page(name, page) in different ways depending on the available APIs
70-
if unified_inventory then --unified inventory installed
70+
if rawget(_G, "unified_inventory") then --unified inventory installed
7171
local old_func = worldedit.register_gui_function
7272
worldedit.register_gui_function = function(identifier, options)
7373
old_func(identifier, options)
@@ -100,7 +100,7 @@ if unified_inventory then --unified inventory installed
100100
player:set_inventory_formspec(get_formspec(name, page))
101101
end
102102
end
103-
elseif inventory_plus then --inventory++ installed
103+
elseif rawget(_G, "inventory_plus") then --inventory++ installed
104104
minetest.register_on_joinplayer(function(player)
105105
local can_worldedit = minetest.check_player_privs(player:get_player_name(), {worldedit=true})
106106
if can_worldedit then

0 commit comments

Comments
 (0)
Please sign in to comment.