v0.9.3: fixed shadow clones proccing the Rogue's weapon on themselves
This commit is contained in:
+1
-1
@@ -203,7 +203,7 @@ public class ShadowClone extends ArmorAbility {
|
|||||||
damage = super.attackProc( enemy, damage );
|
damage = super.attackProc( enemy, damage );
|
||||||
if (Random.Int(4) < Dungeon.hero.pointsInTalent(Talent.SHADOW_BLADE)
|
if (Random.Int(4) < Dungeon.hero.pointsInTalent(Talent.SHADOW_BLADE)
|
||||||
&& Dungeon.hero.belongings.weapon != null){
|
&& Dungeon.hero.belongings.weapon != null){
|
||||||
return Dungeon.hero.belongings.weapon.proc( enemy, this, damage );
|
return Dungeon.hero.belongings.weapon.proc( this, enemy, damage );
|
||||||
} else {
|
} else {
|
||||||
return damage;
|
return damage;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user