From e578a2f310e3e8e4da070dbc318cf4b42940b304 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Tue, 19 Jul 2022 21:24:55 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=95=84=EC=9D=B4=ED=85=9C=20=EA=B2=BD?= =?UTF-8?q?=EB=A7=A4=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/AuctionUniqueItem.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/sammo/AuctionUniqueItem.php b/hwe/sammo/AuctionUniqueItem.php index 0dedde35..e6c78fa7 100644 --- a/hwe/sammo/AuctionUniqueItem.php +++ b/hwe/sammo/AuctionUniqueItem.php @@ -57,7 +57,7 @@ class AuctionUniqueItem extends Auction if (!key_exists($itemKey, $itemList)) { continue; } - $ownItem = $general->getItem($itemKey); + $ownItem = $general->getItem($itemType); if ($ownItem !== null && !$ownItem->isBuyable()) { return '이미 가진 아이템이 있습니다.'; } @@ -186,7 +186,7 @@ class AuctionUniqueItem extends Auction if (!key_exists($itemCode, $itemList)) { continue; } - $ownItem = $this->general->getItem($itemCode); + $ownItem = $this->general->getItem($itemType); if ($ownItem !== null && !$ownItem->isBuyable()) { return '이미 가진 아이템이 있습니다.'; }