Кольца стакались в одном слоте потому что у них один тип.
This commit is contained in:
parent
017043484f
commit
be07b5fdec
3
main.php
3
main.php
@ -339,9 +339,10 @@ function dressitem($id)
|
||||
} elseif ($itemInSlotQuantity > 0 && $itemInSlotQuantity < 3) {
|
||||
// Сравниваем массив колец и массив слотов для колец.
|
||||
//FIXME Два кольца стакаются в среднем слоте!
|
||||
$emptyRingSlots = array_diff($itemInSlot, [9,10,11]);
|
||||
$emptyRingSlots = array_diff([9,10,11], $itemInSlot);
|
||||
// Сортируем массив свободных слотов по возрастанию.
|
||||
sort($emptyRingSlots);
|
||||
print_r($itemInSlot).'<br>';
|
||||
print_r($emptyRingSlots);
|
||||
// Одеваем предмет в первый свободный слот.
|
||||
db::c()->query('UPDATE inventory SET dressed_slot = ?i WHERE item_id = ?i',$emptyRingSlots[0], $id);
|
||||
|
Loading…
Reference in New Issue
Block a user