Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
//distr now indicates the block IDs.
Dieser Commit ist enthalten in:
Ursprung
493ec4818d
Commit
860de6b517
@ -912,10 +912,10 @@ public class WorldEditListener extends PluginListener {
|
|||||||
player.print("# total blocks: " + size);
|
player.print("# total blocks: " + size);
|
||||||
|
|
||||||
for (Countable<Integer> c : distribution) {
|
for (Countable<Integer> c : distribution) {
|
||||||
player.print(String.format("%-7s (%.3f%%) %s",
|
player.print(String.format("%-7s (%.3f%%) %s #%d",
|
||||||
String.valueOf(c.getAmount()),
|
String.valueOf(c.getAmount()),
|
||||||
c.getAmount() / (double)size * 100,
|
c.getAmount() / (double)size * 100,
|
||||||
BlockType.fromID(c.getID()).getName()));
|
BlockType.fromID(c.getID()).getName(), c.getID()));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
player.printError("No blocks counted.");
|
player.printError("No blocks counted.");
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren