Fixed some NPE's for block types not in BlockType.

This commit is contained in:
zml2008
2011-11-02 22:49:56 -07:00
parent 4c05050d73
commit 04803de8b1
2 changed files with 4 additions and 2 deletions

View File

@ -563,10 +563,11 @@ public class SelectionCommands {
}
for (Countable<Integer> c : distribution) {
BlockType block = BlockType.fromID(c.getID());
String str = String.format("%-7s (%.3f%%) %s #%d",
String.valueOf(c.getAmount()),
c.getAmount() / (double)size * 100,
BlockType.fromID(c.getID()).getName(), c.getID());
block == null ? "Unknown" : block.getName(), c.getID());
player.print(str);
if (args.hasFlag('c')) {