From 7078cb3a0eb55d1cdc0c0f043381b0d177058092 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Fri, 14 Mar 2014 14:01:42 -0300 Subject: Fixed Bug 8081 disabling rental items with zones would cause such rental items to be deleted when the item_restricted_consumption_type setting was enabled, this has been fixed in this commit. Special Thanks to Tepoo. http://hercules.ws/board/tracker/issue-8081-map-zone-dbconf-item-dissabled-issues/ Signed-off-by: shennetsind --- src/map/pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/map/pc.c b/src/map/pc.c index 41a722dfb..a231d7226 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4450,7 +4450,7 @@ int pc_useitem(struct map_session_data *sd,int n) { for(i = 0; i < map->list[sd->bl.m].zone->disabled_items_count; i++) { if( map->list[sd->bl.m].zone->disabled_items[i] == nameid ) { clif->msg(sd, ITEM_CANT_USE_AREA); // This item cannot be used within this area - if( battle_config.item_restricted_consumption_type ) { + if( battle_config.item_restricted_consumption_type && sd->status.inventory[n].expire_time == 0 ) { clif->useitemack(sd,n,sd->status.inventory[n].amount-1,true); pc->delitem(sd,n,1,1,0,LOG_TYPE_CONSUME); } -- cgit v1.2.3-60-g2f50