diff options
author | Haru <haru@dotalux.com> | 2017-12-10 00:16:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-10 00:16:08 +0100 |
commit | 082e635672c12be20e660091004c28920d9e2d43 (patch) | |
tree | f6c3ea3b81914c027230d88ad39625ff141e589f | |
parent | 3be0a24aae35c86170fa244abb017aef42ab15c3 (diff) | |
parent | 3357e6d56533f6b61dcc86b4c42557ca09249348 (diff) | |
download | hercules-082e635672c12be20e660091004c28920d9e2d43.tar.gz hercules-082e635672c12be20e660091004c28920d9e2d43.tar.bz2 hercules-082e635672c12be20e660091004c28920d9e2d43.tar.xz hercules-082e635672c12be20e660091004c28920d9e2d43.zip |
Merge pull request #1913 from Asheraf/error
correct wrong conf file path in showerror
-rw-r--r-- | src/char/char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/char.c b/src/char/char.c index 9bef2941d..c3fcd9e0a 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -2255,7 +2255,7 @@ int char_parse_fromlogin_connection_state(int fd) ShowError("Can not connect to login-server.\n"); ShowError("The server communication passwords (default s1/p1) are probably invalid.\n"); ShowError("Also, please make sure your login db has the correct communication username/passwords and the gender of the account is S.\n"); - ShowError("The communication passwords are set in /conf/map-server.conf and /conf/char/char-server.conf\n"); + ShowError("The communication passwords are set in /conf/map/map-server.conf and /conf/char/char-server.conf\n"); sockt->eof(fd); return 1; } else { |