diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-11-29 20:45:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-02 21:34:35 +0300 |
commit | 2963dc52163607c178104e5061713376577f159d (patch) | |
tree | 2858335fe7cd295da29d6b62bded7f0b35eec758 | |
parent | 64b24efb379ab5b6353d3a81e6959119404a9cb5 (diff) | |
download | hercules-2963dc52163607c178104e5061713376577f159d.tar.gz hercules-2963dc52163607c178104e5061713376577f159d.tar.bz2 hercules-2963dc52163607c178104e5061713376577f159d.tar.xz hercules-2963dc52163607c178104e5061713376577f159d.zip |
Add missing kick reasons into clif_authfail_fd.
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 0b059823e..ee15166e6 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -736,6 +736,8 @@ void clif_authrefuse(int fd, uint8 error_code) /// 108 = BAN_IP_BLOCK /// 109 = BAN_INVALID_PWD_CNT /// 110 = BAN_NOT_ALLOWED_JOBCLASS +/// 113 = access is restricted between the hours of midnight to 6:00am. +/// 115 = You are in game connection ban period. /// ? = disconnected -> MsgStringTable[3] // TODO: type enum void clif_authfail_fd(int fd, int type) |