v0.3.0: corrected an error with the description of chilled buff

This commit is contained in:
Evan Debenham 2015-05-15 16:42:10 -04:00 committed by Evan Debenham
parent 90a3e19b7b
commit 8d2c31b720

View File

@ -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) + "%";
}
}