From 8d2c31b7207f6bfac7d16d54caea7997101ac44b Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 15 May 2015 16:42:10 -0400 Subject: [PATCH] v0.3.0: corrected an error with the description of chilled buff --- .../shatteredpixeldungeon/actors/buffs/Chill.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Chill.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Chill.java index 439c571f9..8b40873a5 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Chill.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Chill.java @@ -96,6 +96,6 @@ public class Chill extends FlavourBuff { "At it's worst, this is equivalent to being slowed.\n" + "\n" + "This chilled will last for " + dispTurns() + ", " + - "and is currently reducing speed by " + new DecimalFormat("#.##").format(speedFactor()*100f) + "%"; + "and is currently reducing speed by " + new DecimalFormat("#.##").format((1f-speedFactor())*100f) + "%"; } }