Changed entity report format slightly.

This makes it clearer to users what that floating point number means.
This commit is contained in:
TomyLobo 2013-07-30 12:15:28 +02:00
parent 2510c3eeb5
commit d38d7fc492

View File

@ -231,7 +231,7 @@ private void appendWorldInformation(List<World> worlds) {
for (Map.Entry<Class<? extends Entity>, Integer> entry
: entityCounts.entrySet()) {
entitiesLog.put(entry.getKey().getSimpleName(),
"%d [%f]",
"%d [%f/chunk]",
entry.getValue(),
(float) (entry.getValue() / (double) loadedChunkCount));
}