diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-09 23:32:09 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-09 23:32:09 +0000 |
commit | b19b2cd0e21bc0ce9d513469c4a575419aaf918e (patch) | |
tree | 54af6a7f57e0bed88d7ea3a503461bb99298f5d3 /src/map/chrif.c | |
parent | b857a6bdc74487633ea48305f71d9886ec25aabf (diff) | |
download | hercules-b19b2cd0e21bc0ce9d513469c4a575419aaf918e.tar.gz hercules-b19b2cd0e21bc0ce9d513469c4a575419aaf918e.tar.bz2 hercules-b19b2cd0e21bc0ce9d513469c4a575419aaf918e.tar.xz hercules-b19b2cd0e21bc0ce9d513469c4a575419aaf918e.zip |
- Fixed status-change loading not working.
- Fixed permanent mob-spawn script-events not working.
- AL_CURE won't confuse undead players.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9187 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r-- | src/map/chrif.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 64194c1a2..7039a8d71 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -483,7 +483,6 @@ void chrif_authreq(struct map_session_data *sd) auth_data->login_id1 == sd->login_id1)
{ //auth ok
pc_authok(sd, auth_data->login_id2, auth_data->connect_until_time, auth_data->char_dat);
- chrif_scdata_request(auth_data->account_id, auth_data->char_dat->char_id);
} else { //auth failed
pc_authfail(sd);
chrif_char_offline(sd); //Set him offline, the char server likely has it set as online already.
@@ -524,7 +523,6 @@ void chrif_authok(int fd) { auth_data->login_id1 == RFIFOL(fd, 8))
{ //Auth Ok
pc_authok(auth_data->sd, RFIFOL(fd, 16), RFIFOL(fd, 12), (struct mmo_charstatus*)RFIFOP(fd, 20));
- chrif_scdata_request(auth_data->account_id, auth_data->sd->status.char_id);
} else { //Auth Failed
pc_authfail(auth_data->sd);
chrif_char_offline(auth_data->sd); //Set him offline, the char server likely has it set as online already.
|