From a7f05bf696eebbd06641cc3134d61a987efac690 Mon Sep 17 00:00:00 2001 From: eppc0330 <47050704+eppc0330@users.noreply.github.com> Date: Tue, 3 Oct 2023 06:39:29 +0900 Subject: [PATCH] Fixed marketshop not sending empty stocks (#7932) Fix sold out item removed on sale list of marketshop. Now the item icon still exist in marketshop as gray icon. Fixes #7931 --- src/map/clif.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 991b5b1b83..93c7c369ff 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -2319,11 +2319,6 @@ void clif_npc_market_open(map_session_data *sd, struct npc_data *nd) { continue; } - // Out of stock - if( item->qty == 0 ){ - continue; - } - p->list[count].nameid = client_nameid( item->nameid ); p->list[count].type = itemtype( item->nameid ); p->list[count].price = item->value;