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/chrif.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/chrif.c')
-rw-r--r-- | src/map/chrif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 51e8e5143..d641c6dd3 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -999,9 +999,9 @@ void chrif_idbanned(int fd) { if(0<ret_status && ret_status<=9) clif->message(sd->fd, msg_sd(sd,411+ret_status)); // Message IDs (for search convenience): 412, 413, 414, 415, 416, 417, 418, 419, 420 else if(ret_status==100) - clif->message(sd->fd, msg_sd(sd,421)); + clif->message(sd->fd, msg_sd(sd,421)); // Your account has been totally erased. else - clif->message(sd->fd, msg_sd(sd,420)); //"Your account has not more authorized." + clif->message(sd->fd, msg_sd(sd,420)); //"Your account is not longer authorized." } else if (RFIFOB(fd,6) == 1) { // 1: ban time_t timestamp; char tmpstr[2048]; |