From 71bdb2f9041d767a56f4694e5c286af3e75be693 Mon Sep 17 00:00:00 2001 From: Felipe Muniz Date: Tue, 21 Nov 2023 13:31:00 -0300 Subject: [PATCH] fix: don't send inbox store item to market (#1859) --- src/creatures/players/player.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/creatures/players/player.cpp b/src/creatures/players/player.cpp index 9002feea81f..7c20e7406de 100644 --- a/src/creatures/players/player.cpp +++ b/src/creatures/players/player.cpp @@ -6722,6 +6722,10 @@ std::pair>, std::mapisStoreItem()) { + continue; + } + const ItemType &itemType = Item::items[item->getID()]; if (itemType.wareId == 0) { continue;