diff options
author | epuncker <gm.perflex@gmail.com> | 2016-07-22 11:39:10 -0300 |
---|---|---|
committer | epuncker <gm.perflex@gmail.com> | 2016-07-25 11:49:56 -0300 |
commit | 03ce9e5a69b54535ea70b3776004dd7ade7e6134 (patch) | |
tree | 1a8ca3b3fb4a8d006d1b09c3146a110787a79ef8 /src/map/buyingstore.c | |
parent | 22bf27402936e8c95cc9c50597353da300fe7d6d (diff) | |
download | hercules-03ce9e5a69b54535ea70b3776004dd7ade7e6134.tar.gz hercules-03ce9e5a69b54535ea70b3776004dd7ade7e6134.tar.bz2 hercules-03ce9e5a69b54535ea70b3776004dd7ade7e6134.tar.xz hercules-03ce9e5a69b54535ea70b3776004dd7ade7e6134.zip |
Added a missing entry into messages.conf and added some comments where missing, ref #1282
Diffstat (limited to 'src/map/buyingstore.c')
-rw-r--r-- | src/map/buyingstore.c | 6 |
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; } |