- Removed an auth procedure check that is no longer needed (fixes double-login checks not working right)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9927 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2007-02-27 03:51:39 +00:00
parent 8c52b6b21d
commit 05afc3cf73

View File

@ -509,10 +509,6 @@ void chrif_authok(int fd) {
struct auth_node *auth_data; struct auth_node *auth_data;
RFIFOHEAD(fd); 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) if ((auth_data =uidb_get(auth_db, RFIFOL(fd, 4))) != NULL)
{ //Is the character already awaiting authorization? { //Is the character already awaiting authorization?
if (auth_data->sd) if (auth_data->sd)