forked from VoxeLibre/VoxeLibre
Use set_count instead of creating a new item and checking for enchanted books
This commit is contained in:
parent
9919011aca
commit
903d1777be
|
@ -695,9 +695,9 @@ minetest.register_on_joinplayer(function(player)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
minetest.register_on_player_inventory_action(function(player, action, inventory, inventory_info)
|
minetest.register_on_player_inventory_action(function(player, action, inventory, inventory_info)
|
||||||
|
if minetest.is_creative_enabled(player:get_player_name()) and get_stack_size(player) == 64 and action == "put" and inventory_info.listname == "main" then
|
||||||
local stack = inventory_info.stack
|
local stack = inventory_info.stack
|
||||||
local item = stack:get_name()
|
stack:set_count(stack:get_stack_max())
|
||||||
if minetest.is_creative_enabled(player:get_player_name()) and action == "put" and inventory_info.listname == "main" and get_stack_size(player) == 64 and not item:find("mcl_enchanting:book_enchanted") then
|
player:get_inventory():set_stack("main", inventory_info.index, stack)
|
||||||
player:get_inventory():set_stack("main", inventory_info.index, item .. " " .. stack:get_stack_max())
|
|
||||||
end
|
end
|
||||||
end)
|
end)
|
Loading…
Reference in New Issue