v0.9.4: fixed slightly incorrect numbers in lotus description
This commit is contained in:
parent
7730b4c5a1
commit
edfc73aed5
|
@ -457,7 +457,8 @@ public class WandOfRegrowth extends Wand {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String description() {
|
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";
|
private static final String WAND_LVL = "wand_lvl";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user