auctionable check improvements

This commit is contained in:
Manuel Simon Hirsig
2017-01-29 17:35:30 +01:00
parent 272aad034b
commit c7f972942e
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ end
function matching_item(slot, partial)
local item_info = temp-info.container_item(unpack(slot))
return item_info and item_info.item_key == state.item_key and info.auctionable(item_info.tooltip) and (not partial or item_info.count < item_info.max_stack)
return item_info and item_info.item_key == state.item_key and info.auctionable(item_info.tooltip, nil, true) and (not partial or item_info.count < item_info.max_stack)
end
function find_empty_slot()