summaryrefslogtreecommitdiff
path: root/src/char/inter.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-30 13:25:42 +0300
committerAndrei Karas <akaras@inbox.ru>2015-07-12 13:39:11 +0300
commit48bbaaab4f73b0eb4416898bed286bcb5393f9ec (patch)
tree72b42c5066276164600ab5a7d755b2fcb38f1d7a /src/char/inter.c
parent58726366cecccc4cb44ec4978dc2620b54c5fb4f (diff)
downloadhercules-48bbaaab4f73b0eb4416898bed286bcb5393f9ec.tar.gz
hercules-48bbaaab4f73b0eb4416898bed286bcb5393f9ec.tar.bz2
hercules-48bbaaab4f73b0eb4416898bed286bcb5393f9ec.tar.xz
hercules-48bbaaab4f73b0eb4416898bed286bcb5393f9ec.zip
Remove useless checks from char server.
Diffstat (limited to 'src/char/inter.c')
-rw-r--r--src/char/inter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/inter.c b/src/char/inter.c
index ca041d581..dbb782093 100644
--- a/src/char/inter.c
+++ b/src/char/inter.c
@@ -503,7 +503,7 @@ void mapif_parse_accinfo2(bool success, int map_fd, int u_fd, int u_aid, int acc
inter->msg_to_fd(map_fd, u_fd, u_aid, "-- Account %d --", account_id);
inter->msg_to_fd(map_fd, u_fd, u_aid, "User: %s | GM Group: %d | State: %d", userid, group_id, state);
- if (user_pass && *user_pass != '\0') { /* password is only received if your gm level is greater than the one you're searching for */
+ if (*user_pass != '\0') { /* password is only received if your gm level is greater than the one you're searching for */
if (pin_code && *pin_code != '\0')
inter->msg_to_fd(map_fd, u_fd, u_aid, "Password: %s (PIN:%s)", user_pass, pin_code);
else