Fix crash in creative

This commit is contained in:
Wuzzy 2019-08-31 19:40:51 +02:00
parent 0f8757ccba
commit 78306e6e2a
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ local function create_creative_inventory(player)
local player_name = player:get_player_name()
local inv = minetest.create_detached_inventory("creative_"..player_name, {
allow_move = function(inv, from_list, from_index, to_list, to_index, count, player)
if minetest.settings:get_bool("creative_mode") then
local name = player:get_player_name()
if minetest.settings:get_bool("creative_mode") and to_list ~= "main" then
return count
else
return 0