Fixes reporting of world-specific block values in console

This commit is contained in:
tastybento 2019-08-17 10:28:50 -07:00
parent 8e2f4a4b5e
commit 94114c65e1
1 changed files with 5 additions and 8 deletions

View File

@ -330,15 +330,12 @@ public class CalcIslandLevel {
for (Entry<Material> en : entriesSortedByCount) {
Material type = en.getElement();
int value = 0;
if (addon.getSettings().getBlockValues().containsKey(type)) {
// Specific
value = addon.getSettings().getBlockValues().get(type);
int value = getValue(type);
r.add(type.toString() + ":"
+ String.format("%,d", en.getCount()) + " blocks x " + value + " = " + (value * en.getCount()));
total += (value * en.getCount());
r.add(type.toString() + ":"
+ String.format("%,d", en.getCount()) + " blocks x " + value + " = " + (value * en.getCount()));
total += (value * en.getCount());
}
}
r.add("Subtotal = " + total);
r.add(LINE_BREAK);