summaryrefslogtreecommitdiff
path: root/src/char/char.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-09-20 22:09:59 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-09-20 22:09:59 +0000
commit37a4268a102ac66bbc8d283b3ae57d952bf26425 (patch)
tree13e31c6f791e396709c76ea3ba29dc6db93c51f3 /src/char/char.c
parentcb881ba629126c535ae38ccc72939ccc41869f70 (diff)
downloadhercules-37a4268a102ac66bbc8d283b3ae57d952bf26425.tar.gz
hercules-37a4268a102ac66bbc8d283b3ae57d952bf26425.tar.bz2
hercules-37a4268a102ac66bbc8d283b3ae57d952bf26425.tar.xz
hercules-37a4268a102ac66bbc8d283b3ae57d952bf26425.zip
Disabled ip checking during auth, since it lead to a lot of confusion.
This essentially reverts the default behavior to before r10021. Re-enabling should only be reconsidered after the subnet mechanism is made fully automatic. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14069 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char/char.c')
-rw-r--r--src/char/char.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/char/char.c b/src/char/char.c
index d7eb63a77..ecf8c8b4b 100644
--- a/src/char/char.c
+++ b/src/char/char.c
@@ -3099,8 +3099,8 @@ int parse_frommap(int fd)
node->account_id == account_id &&
node->char_id == char_id &&
node->login_id1 == login_id1 &&
- node->sex == sex &&
- node->ip == ip )
+ node->sex == sex /*&&
+ node->ip == ip*/ )
{// auth ok
cd->sex = sex;
@@ -3281,8 +3281,8 @@ int parse_char(int fd)
if( node != NULL &&
node->account_id == account_id &&
node->login_id1 == login_id1 &&
- node->login_id2 == login_id2 &&
- node->ip == ipl )
+ node->login_id2 == login_id2 /*&&
+ node->ip == ipl*/ )
{// authentication found (coming from map server)
idb_remove(auth_db, account_id);
char_auth_ok(fd, sd);