File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ local get_formspec = function(name, identifier)
67
67
end
68
68
69
69
-- 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
71
71
local old_func = worldedit .register_gui_function
72
72
worldedit .register_gui_function = function (identifier , options )
73
73
old_func (identifier , options )
@@ -100,7 +100,7 @@ if unified_inventory then --unified inventory installed
100
100
player :set_inventory_formspec (get_formspec (name , page ))
101
101
end
102
102
end
103
- elseif inventory_plus then -- inventory++ installed
103
+ elseif rawget ( _G , " inventory_plus" ) then -- inventory++ installed
104
104
minetest .register_on_joinplayer (function (player )
105
105
local can_worldedit = minetest .check_player_privs (player :get_player_name (), {worldedit = true })
106
106
if can_worldedit then
You can’t perform that action at this time.
0 commit comments