Changed how mobcount works since it wasn't counting last mob death. (bugreport:2419)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13358 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
L0ne_W0lf 2008-11-08 00:33:58 +00:00
parent 64e8d5838d
commit cd70b692e7
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,8 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2008/11/07
* Rev. 13358 Changed how mobcount works since it wasn't counting last mob death. (bugreport:2419) [L0ne_W0lf]
2008/11/06
* Fixed 'Char creation denied' message not being sent properly. [FlavioJS]
- Number 2 didn't exist in old clients so it used the default message,

View File

@ -9530,7 +9530,8 @@ BUILDIN_FUNC(mapwarp) // Added by RoVeRT
static int buildin_mobcount_sub(struct block_list *bl,va_list ap) // Added by RoVeRT
{
char *event=va_arg(ap,char *);
if(strcmp(event,((struct mob_data *)bl)->npc_event)==0)
struct mob_data *md = ((struct mob_data *)bl);
if(strcmp(event,md->npc_event)==0 && md->status.hp > 0)
return 1;
return 0;
}