Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #002958

  • 0 - None Assigned

  • New

Issue Confirmations

  • Yes (0)No (0)
Photo

Soul Burn bug (WITH FIX)

Posted by Hercules Bot on 11 April 2009 - 04:04 PM

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 )
CODE
            case PF_SOULBURN:
                 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;

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).

moved issue from Skills