From 522d1f64850c807d55910c2c9a6a6be6dd75e8e6 Mon Sep 17 00:00:00 2001 From: lopar Date: Sat, 29 Aug 2020 16:02:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BB=D0=B8=D1=88=D0=BA=D0=BE=D0=BC=20?= =?UTF-8?q?=D1=81=D1=82=D1=80=D0=BE=D0=B3=D0=B0=D1=8F=20=D1=82=D0=B8=D0=BF?= =?UTF-8?q?=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D1=8F=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.php b/main.php index 46ee112..db11cd3 100644 --- a/main.php +++ b/main.php @@ -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; } }