diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-20 16:17:24 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-20 16:17:24 +0000 |
commit | 634861889132634336748ad9204e80e004b05809 (patch) | |
tree | 9b6b881ca1cf49e5c3f943c2b7bb5c8c75a475aa /src/map/pc.c | |
parent | bb1c5108521509282b53460338d9c6f309018d50 (diff) | |
download | hercules-634861889132634336748ad9204e80e004b05809.tar.gz hercules-634861889132634336748ad9204e80e004b05809.tar.bz2 hercules-634861889132634336748ad9204e80e004b05809.tar.xz hercules-634861889132634336748ad9204e80e004b05809.zip |
* Several updates from Trunk
- Merged the new Auth process to avoid double logins.
- Merged official adoption process.
- Removed @gm command.
- Cleaning of MAX_ACCOUNT_ID and MAX_CHAR_ID
- Update of the online user count (map_getusers)
NOTE: i will do a second check to see if i forget something else.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12621 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 27336c05b..4d64a3182 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4915,7 +4915,7 @@ void pc_respawn(struct map_session_data* sd, uint8 clrtype) static int pc_respawn_timer(int tid,unsigned int tick,int id,int data) { struct map_session_data *sd = map_id2sd(id); - if( sd != NULL) + if( sd != NULL ) pc_respawn(sd,0); return 0; |