diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.h | 1 | ||||
-rw-r--r-- | src/map/pc.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index f68eaafa3..47c2cc776 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -322,6 +322,7 @@ typedef enum useskill_fail_cause { // clif_skill_fail enum clif_messages { SKILL_CANT_USE_AREA = 0x536, + ITEM_CANT_USE_AREA = 0x537, }; /** diff --git a/src/map/pc.c b/src/map/pc.c index f29c590b3..6dea877a0 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4432,6 +4432,7 @@ int pc_useitem(struct map_session_data *sd,int n) { /* on restricted maps the item is consumed but the effect is not used */ for(i = 0; i < map[sd->bl.m].zone->disabled_items_count; i++) { if( map[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 ) { clif->useitemack(sd,n,sd->status.inventory[n].amount-1,true); pc->delitem(sd,n,1,1,0,LOG_TYPE_CONSUME); |