summaryrefslogtreecommitdiff
path: root/src/char/char.c
diff options
context:
space:
mode:
authorMadCamel <madcamel@gmail.com>2009-11-08 06:25:42 -0500
committerMadCamel <madcamel@gmail.com>2009-11-08 06:25:42 -0500
commit6e42644247e80667db4d39c3a0e543d9476f9c87 (patch)
tree483cd44a8e4bd1587b3c1c51e8bad5f9d30da7c8 /src/char/char.c
parent35044714f13629ee6951aaa7a03d409428fdd4e4 (diff)
parentd90bbe7517fd3bd51d4893cced5f20bcf314e601 (diff)
downloadtmwa-6e42644247e80667db4d39c3a0e543d9476f9c87.tar.gz
tmwa-6e42644247e80667db4d39c3a0e543d9476f9c87.tar.bz2
tmwa-6e42644247e80667db4d39c3a0e543d9476f9c87.tar.xz
tmwa-6e42644247e80667db4d39c3a0e543d9476f9c87.zip
Merge branch 'master' of git://gitorious.org/tmw-eathena/mainline
Diffstat (limited to 'src/char/char.c')
-rw-r--r--src/char/char.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/char/char.c b/src/char/char.c
index c60305b..c632d1b 100644
--- a/src/char/char.c
+++ b/src/char/char.c
@@ -2778,12 +2778,12 @@ int parse_char(int fd) {
// otherwise, we delete the character
} else {
- if (strcmpi(email, sd->email) != 0) { // if it's an invalid email
+ /*if (strcmpi(email, sd->email) != 0) { // if it's an invalid email
WFIFOW(fd, 0) = 0x70;
WFIFOB(fd, 2) = 0; // 00 = Incorrect Email address
WFIFOSET(fd, 3);
// if mail is correct
- } else {
+ } else {*/
for (i = 0; i < 9; i++) {
struct mmo_charstatus *cs = NULL;
if (sd->found_char[i] >= 0 && (cs = &char_dat[sd->found_char[i]])->char_id == RFIFOL(fd,2)) {
@@ -2825,7 +2825,7 @@ int parse_char(int fd) {
WFIFOB(fd,2) = 0;
WFIFOSET(fd,3);
}
- }
+ //}
RFIFOSKIP(fd,46);
}
break;