Fix crash in inventory list

This commit is contained in:
TomArnaez 2023-02-28 17:01:26 +00:00
parent 6398f8a79e
commit cdfeb06bfb
1 changed files with 3 additions and 1 deletions

View File

@ -2694,7 +2694,9 @@ void inventoryOpenUseItemOn(Object* a1)
inventoryWindowOpenContextMenu(keyCode, INVENTORY_WINDOW_TYPE_USE_ITEM_ON);
} else {
int inventoryItemIndex = _pud->length - (_stack_offset[_curr_stack] + keyCode - 1000 + 1);
if (inventoryItemIndex < _pud->length) {
// SFALL: Fix crash when clicking on empty space in the inventory list
// opened by "Use Inventory Item On" (backpack) action icon
if (inventoryItemIndex < _pud->length && inventoryItemIndex >= 0) {
InventoryItem* inventoryItem = &(_pud->items[inventoryItemIndex]);
if (isInCombat()) {
if (gDude->data.critter.combat.ap >= 2) {