diff options
author | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-27 17:13:39 +0000 |
---|---|---|
committer | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-27 17:13:39 +0000 |
commit | a51c01c18d3130d54dc3f032a22bbbf88ffdc8c1 (patch) | |
tree | 7b943b76de251460ff6ca273d93369feedc922ac /src | |
parent | 7206810cc58a01e9d87a02920b0e6771c9864b8a (diff) | |
download | hercules-a51c01c18d3130d54dc3f032a22bbbf88ffdc8c1.tar.gz hercules-a51c01c18d3130d54dc3f032a22bbbf88ffdc8c1.tar.bz2 hercules-a51c01c18d3130d54dc3f032a22bbbf88ffdc8c1.tar.xz hercules-a51c01c18d3130d54dc3f032a22bbbf88ffdc8c1.zip |
update
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@823 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 2 | ||||
-rw-r--r-- | src/map/map.c | 2 | ||||
-rw-r--r-- | src/map/pc.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index c9d286a7a..26740323e 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7541,7 +7541,7 @@ void clif_parse_TickSend(int fd, struct map_session_data *sd) { } //double connection bug fix by Valaris - if(sd->alive_timer) + if(sd->alive_timer > 0) delete_timer(sd->alive_timer,pc_alive_timer); sd->alive_timer=add_timer(gettick()+60*1000,pc_alive_timer,sd->bl.id,0); diff --git a/src/map/map.c b/src/map/map.c index 91f82110f..83ef75762 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1055,7 +1055,7 @@ int map_quit(struct map_session_data *sd) { storage_storage_save(sd); //double connect bug fix by Valaris - if(sd->alive_timer) { + if(sd->alive_timer > 0) { delete_timer(sd->alive_timer,pc_alive_timer); sd->alive_timer = -1; // not 0, the server will assume it's still active } diff --git a/src/map/pc.c b/src/map/pc.c index f7837f838..fd84742c4 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3994,7 +3994,7 @@ int pc_setpos(struct map_session_data *sd,char *mapname_org,int x,int y,int clrt // clif_spawnpc(sd); //double connection bug fix by Valaris - if(sd->alive_timer) + if(sd->alive_timer > 0) delete_timer(sd->alive_timer,pc_alive_timer); sd->alive_timer=add_timer(gettick()+60*1000,pc_alive_timer,sd->bl.id,0); |