diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java index f3e6a5afa..211577192 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java @@ -214,7 +214,7 @@ public class Combo extends Buff implements ActionIndicator.Action { dmg = Math.round(dmg*2.5f); break; case FURY: - dmg = Math.round(dmg*0.4f); + dmg = Math.round(dmg*0.6f); break; }