formatting for compressed data tree

This commit is contained in:
Sen 2025-05-28 18:12:28 +02:00
parent 815c52e5d7
commit b01b602728
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
16 changed files with 78 additions and 19 deletions

View file

@ -16,7 +16,7 @@ public class CommandSeed extends Command {
public Object exec(CommandEnvironment env, Executor exec, WorldServer world, boolean dump) {
if(dump)
exec.logConsole("Daten: %s", world.dimension.dumpTags().toString());
exec.logConsole("Daten: %s", world.dimension.dumpTags().format(4));
exec.logConsole("Startwert von %s: %d", world.dimension.getFormattedName(false), world.dimension.getSeed());
return world.dimension.getSeed();
}