diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-27 03:51:39 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-27 03:51:39 +0000 |
commit | 6e1e6ab9d7089465960a5c4077595a85cf2ce72f (patch) | |
tree | af32fbe3e65e0346591941cf48dcfc1c232875d4 /src | |
parent | 43d7a390b485a4bc46363e4136e26c92e2013515 (diff) | |
download | hercules-6e1e6ab9d7089465960a5c4077595a85cf2ce72f.tar.gz hercules-6e1e6ab9d7089465960a5c4077595a85cf2ce72f.tar.bz2 hercules-6e1e6ab9d7089465960a5c4077595a85cf2ce72f.tar.xz hercules-6e1e6ab9d7089465960a5c4077595a85cf2ce72f.zip |
- Removed an auth procedure check that is no longer needed (fixes double-login checks not working right)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9927 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/chrif.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 190038805..68b97e5b2 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -509,10 +509,6 @@ void chrif_authok(int fd) { struct auth_node *auth_data; RFIFOHEAD(fd); - if (map_id2sd(RFIFOL(fd, 4)) != NULL) - //Someone with this account is already in! Do not store the info to prevent possible sync exploits. [Skotlex] - return; - if ((auth_data =uidb_get(auth_db, RFIFOL(fd, 4))) != NULL) { //Is the character already awaiting authorization? if (auth_data->sd) |