diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java index 3bab3c718..08c9c79df 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java @@ -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";