Changed a if statement around because gcc emocries over it.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12878 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
7e9bafbe88
commit
285e8e1f36
@ -1473,8 +1473,9 @@ int skill_attack (int attack_type, struct block_list* src, struct block_list *ds
|
||||
|
||||
damage = dmg.damage + dmg.damage2;
|
||||
|
||||
if (skillid == AL_INCAGI || skillid == AL_BLESSING && tsd->sc.data[SC_CHANGEUNDEAD])
|
||||
damage = 1;
|
||||
if (skillid == AL_INCAGI || skillid == AL_BLESSING)
|
||||
if (tsd->sc.data[SC_CHANGEUNDEAD])
|
||||
damage = 1;
|
||||
|
||||
if (damage > 0 && dmg.flag&BF_WEAPON && src != bl && src == dsrc &&
|
||||
skillid != WS_CARTTERMINATION) // FIXME(?): Quick and dirty check, but HSCR does bypass Shield Reflect... so I make it bypass the whole reflect thing [DracoRPG]
|
||||
|
Loading…
x
Reference in New Issue
Block a user