Issue Information
-
#002958
-
0 - None Assigned
-
New
Issue Confirmations
-
Yes (0)No (0)
Originally posted by Ind
http://www.eathena.w...er&showbug=2958
so, the damage soul burn does should be target ( or self ) SP *2, in eathena it doesnt work.
to fix:
battle.c
take this out ( its placed before race/element/stuff reductions )
in the end of the same code, before:
put
and it'll work just how it was supposed to be ( tested on iRO )
This post has been edited by Ind: Apr 11 2009, 09:12 AM
http://www.eathena.w...er&showbug=2958
so, the damage soul burn does should be target ( or self ) SP *2, in eathena it doesnt work.
to fix:
battle.c
take this out ( its placed before race/element/stuff reductions )
CODE
case PF_SOULBURN:
ad.damage = tstatus->sp * 2;
break;
ad.damage = tstatus->sp * 2;
break;
in the end of the same code, before:
CODE
return ad;
put
CODE
if(skill_num==PF_SOULBURN)
ad.damage = tstatus->sp * 2;
ad.damage = tstatus->sp * 2;
and it'll work just how it was supposed to be ( tested on iRO )
This post has been edited by Ind: Apr 11 2009, 09:12 AM
Originally posted by Angezerus
Can't reproduce. Working fine ( Be aware, that only level 5 should deal sp*2 damage. Other levels not!. This is working correctly on rA).
Can't reproduce. Working fine ( Be aware, that only level 5 should deal sp*2 damage. Other levels not!. This is working correctly on rA).
moved issue from Skills