Кольца стакались в одном слоте потому что у них один тип.

This commit is contained in:
lopar 2020-08-29 16:16:48 +03:00
parent 413fe5355f
commit 6ddea96b47

View File

@ -338,9 +338,11 @@ function dressitem($id)
db::c()->query('UPDATE inventory SET dressed_slot = 9 WHERE item_id = ?i', $id);
} elseif ($itemInSlotQuantity > 0 && $itemInSlotQuantity < 3) {
// Сравниваем массив колец и массив слотов для колец.
//FIXME Два кольца стакаются в среднем слоте!
$emptyRingSlots = array_diff([9,10,11], $itemInSlot);
// Сортируем массив свободных слотов по возрастанию.
sort($emptyRingSlots);
print_r($emptyRingSlots);
// Одеваем предмет в первый свободный слот.
db::c()->query('UPDATE inventory SET dressed_slot = ?i WHERE item_id = ?i',$emptyRingSlots[0], $id);
} elseif ($itemInSlotQuantity === 3) {