Add character check to selection control (#386)

This commit is contained in:
2025-04-17 04:59:12 +09:00
committed by GitHub
parent 64b9d0db40
commit 79ab6db28a

View File

@@ -76,7 +76,9 @@ function Selection.start(player, selection_name, single_use, ...)
--player.cursor_stack_temporary = true --player.cursor_stack_temporary = true
-- Make a slot to place the selection tool even if inventory is full -- Make a slot to place the selection tool even if inventory is full
player.character_inventory_slots_bonus = player.character_inventory_slots_bonus + 1 if player.character then
player.character_inventory_slots_bonus = player.character_inventory_slots_bonus + 1
end
local inventory = player.get_main_inventory() local inventory = player.get_main_inventory()
if inventory then if inventory then
player.hand_location = { inventory = inventory.index, slot = #inventory } player.hand_location = { inventory = inventory.index, slot = #inventory }