* Fixed break equipment debuff working on bosses (bugreport:3023)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13703 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Playtester 2009-04-27 16:53:12 +00:00
parent 96a0560b11
commit 33911a7594
2 changed files with 3 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.
2009/04/27
* Fixed break equipment debuff working on bosses (bugreport:3023) [Playtester]
2009/04/25
* Fixed Monster Spiral Pierce not being reduced by Ghostring Card (bugreport:3013) [Playtester]
- it is forced neutral as its a MISC skill for monsters and doesn't take weapon element

View File

@ -1280,7 +1280,7 @@ int skill_break_equip (struct block_list *bl, unsigned short where, int rate, in
where&=~where_list[i];
else if (rand()%10000 >= rate)
where&=~where_list[i];
else if (!sd) //Cause Strip effect.
else if (!sd && !(status_get_mode(bl)&MD_BOSS)) //Cause Strip effect.
sc_start(bl,scatk[i],100,0,skill_get_time(status_sc2skill(scatk[i]),1));
}
}