v0.3.1: fixed an error with the description of the combo buff

This commit is contained in:
Evan Debenham 2015-07-15 00:03:35 -04:00 committed by Evan Debenham
parent c5252a5045
commit 4f226a409d

View File

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