v2.5.0: fixed incorrect desc in petrified seed

This commit is contained in:
Evan Debenham
2024-08-28 11:35:54 -04:00
parent 4088463016
commit 63a9deb300

View File

@@ -39,12 +39,11 @@ public class PetrifiedSeed extends Trinket {
@Override
public String statsDesc() {
if (isIdentified()){
return Messages.get(this, "stats_desc",
Messages.decimalFormat("#.##", 100*stoneInsteadOfSeedChance(buffedLvl())),
Messages.decimalFormat("#.##", 100*(grassLootMultiplier(buffedLvl())-1f)));
} else {
return Messages.get(this, "stats_desc",
return Messages.get(this, "typical_stats_desc",
Messages.decimalFormat("#.##", 100*stoneInsteadOfSeedChance(0)),
Messages.decimalFormat("#.##", 100*(grassLootMultiplier(0)-1f)));
}