v0.9.4: fixed slightly incorrect numbers in lotus description

This commit is contained in:
Evan Debenham 2021-07-05 18:42:04 -04:00
parent 7730b4c5a1
commit edfc73aed5

View File

@ -457,7 +457,8 @@ public class WandOfRegrowth extends Wand {
@Override
public String description() {
return Messages.get(this, "desc", wandLvl, (int)(seedPreservation()*100), (int)(seedPreservation()*100) );
int preservation = Math.round(seedPreservation()*100);
return Messages.get(this, "desc", wandLvl, preservation, preservation);
}
private static final String WAND_LVL = "wand_lvl";