Слишком строгая типизация?

This commit is contained in:
lopar 2020-08-29 16:02:52 +03:00
parent 702501dbcc
commit 522d1f6485

View File

@ -331,7 +331,7 @@ function dressitem($id)
$error = ERROR_TOO_MANY_ITEMS_IN_SLOTS;
db::c()->query('UPDATE inventory SET dressed_slot = 0 WHERE dressed_slot BETWEEN 1 AND 12 AND owner_id = ?i', $_SESSION['uid']);
}
} elseif ($selectedItem->item_type === RING) {
} elseif ($selectedItem->item_type == RING) {
// работаем с кольцами
if (!$itemInSlotQuantity) {
// просто одеваем предмет в слот 9
@ -364,7 +364,7 @@ function dressitem($id)
if (isset($error)) {
return $error;
} else {
return true;
return null;
}
}