diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-04 03:31:22 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-04 03:31:22 +0000 |
commit | 3f9f1e465bd86b8f2143c84f9b95b58d14f408d9 (patch) | |
tree | 73655bcadd4e3a2148e0104d4c1a8c4399196277 /src/char | |
parent | 00853b9ce8a1d53640709d3a7933b1a74e623d3a (diff) | |
download | hercules-3f9f1e465bd86b8f2143c84f9b95b58d14f408d9.tar.gz hercules-3f9f1e465bd86b8f2143c84f9b95b58d14f408d9.tar.bz2 hercules-3f9f1e465bd86b8f2143c84f9b95b58d14f408d9.tar.xz hercules-3f9f1e465bd86b8f2143c84f9b95b58d14f408d9.zip |
Fixed an auth bug in txt charserver (caused by r12579, followup to r12609)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13042 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char')
-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 d1225aee1..6ee2f6928 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -3113,7 +3113,7 @@ int parse_frommap(int fd) // only use the auth once and mark user online idb_remove(auth_db, account_id); - set_char_online(id, account_id, char_id); + set_char_online(id, char_id, account_id); } else {// auth failed |