summaryrefslogtreecommitdiff
path: root/src/map/buyingstore.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-07-25 20:53:35 +0200
committerGitHub <noreply@github.com>2016-07-25 20:53:35 +0200
commitbc46ac94eba15b4f5159a7fa330c93907dad7d68 (patch)
treea4a824762dcea51b82e2816eff89f7db7b060656 /src/map/buyingstore.c
parentfee640a7170ec62b55c2eb1f13477326d9fe6428 (diff)
parent03ce9e5a69b54535ea70b3776004dd7ade7e6134 (diff)
downloadhercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.tar.gz
hercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.tar.bz2
hercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.tar.xz
hercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.zip
Merge pull request #1380 from EPuncker/messagesconf-update
Added a missing entry into messages.conf and added some comments wher…
Diffstat (limited to 'src/map/buyingstore.c')
-rw-r--r--src/map/buyingstore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/buyingstore.c b/src/map/buyingstore.c
index 3828a3c14..58a1f925f 100644
--- a/src/map/buyingstore.c
+++ b/src/map/buyingstore.c
@@ -100,7 +100,7 @@ void buyingstore_create(struct map_session_data* sd, int zenylimit, unsigned cha
if( !pc_can_give_items(sd) )
{// custom: GM is not allowed to buy (give zeny)
sd->buyingstore.slots = 0;
- clif->message(sd->fd, msg_sd(sd,246));
+ clif->message(sd->fd, msg_sd(sd,246)); // Your GM level doesn't authorize you to perform this action.
clif->buyingstore_open_failed(sd, BUYINGSTORE_CREATE, 0);
return;
}
@@ -222,7 +222,7 @@ void buyingstore_open(struct map_session_data* sd, int account_id)
if( !pc_can_give_items(sd) )
{// custom: GM is not allowed to sell
- clif->message(sd->fd, msg_sd(sd,246));
+ clif->message(sd->fd, msg_sd(sd,246)); // Your GM level doesn't authorize you to perform this action.
return;
}
@@ -261,7 +261,7 @@ void buyingstore_trade(struct map_session_data* sd, int account_id, unsigned int
if( !pc_can_give_items(sd) )
{// custom: GM is not allowed to sell
- clif->message(sd->fd, msg_sd(sd,246));
+ clif->message(sd->fd, msg_sd(sd,246)); // Your GM level doesn't authorize you to perform this action.
clif->buyingstore_trade_failed_seller(sd, BUYINGSTORE_TRADE_SELLER_FAILED, 0);
return;
}