Add loaded anchor count when done with initializing a world

This commit is contained in:
Christian Koop 2022-12-26 20:26:45 +01:00
parent 327c259e65
commit 05702f4199
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public class AnchorManager {
}
long end = System.nanoTime();
this.plugin.getLogger().info("Initialized anchors in world '" + world.getName() + "' " +
this.plugin.getLogger().info("Initialized " + this.anchors.get(world).size() + " anchors in world '" + world.getName() + "' " +
"(" + TimeUnit.NANOSECONDS.toMillis(end - start) + "ms)");
if (callback != null) {