Add new images and update README with network modifications; improve ConsoleTable formatting

This commit is contained in:
2025-03-22 09:39:23 +01:00
parent e48bddf94d
commit 3844a46379
9 changed files with 1132 additions and 1044 deletions

View File

@@ -49,7 +49,7 @@ public class ConsoleTable {
builder.append('║');
builder.append(" ".repeat(first));
builder.append(val);
builder.append(" ".repeat(diff - first));
builder.append(" ".repeat(Math.max(diff - first, 0)));
}
builder.append("\n");