fix(minecraft-fabric-helper): Add missing newline in error log messages

This commit is contained in:
2026-05-24 16:39:47 +02:00
parent 21749e9d0b
commit 4bc05471d8
2 changed files with 2 additions and 1 deletions
@@ -154,7 +154,7 @@ public class FabricConfigContainerHelper<T extends @Nullable Object> {
stringBuilder.append(type);
stringBuilder.append(" while reading ");
stringBuilder.append(filePath);
stringBuilder.append(": ");
stringBuilder.append(": \n");
for (TweedReadIssue issue : issues) {
stringBuilder.append(" - ").append(issue).append("\n");
}