git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@531 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
amber 2004-12-10 06:32:17 +00:00
parent ca70f411c7
commit be6f644927
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Date Added Date Added
12/9 12/9
* Moved a map_freeblock_unlock() around to eliminate a
crash [MouseJstr]
* Fixed how players are cleaned up when they disconnected * Fixed how players are cleaned up when they disconnected
during authentication [MouseJstr] during authentication [MouseJstr]
* Adjusted some messages in @marry [MouseJstr] * Adjusted some messages in @marry [MouseJstr]

View File

@ -764,9 +764,11 @@ static int mob_timer(int tid,unsigned int tick,int id,int data)
printf("mob_timer : %d ?\n",md->state.state); printf("mob_timer : %d ?\n",md->state.state);
break; break;
} }
map_freeblock_unlock();
if (md->timer == -1) if (md->timer == -1)
mob_changestate(md,MS_WALK,0); mob_changestate(md,MS_WALK,0);
map_freeblock_unlock();
return 0; return 0;
} }