From 4f226a409d9a4f608fd39761ec70a1af28c78b9d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 15 Jul 2015 00:03:35 -0400 Subject: [PATCH] v0.3.1: fixed an error with the description of the combo buff --- .../shatteredpixeldungeon/actors/buffs/Combo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java index 0e9eea819..d596f420d 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java @@ -76,6 +76,6 @@ public class Combo extends Buff { "failing to land a hit quickly enough will reset the combo.\n" + "\n" + (count <= 2 ? "Your combo has not built up enough to give you bonus damage yet." : - "Your combo is currently giving you " + ((count - 2) / 5f) + " % bonus damage."); + "Your combo is currently giving you " + ((count - 2) * 20f) + " % bonus damage."); } }