fix(serialization): Adds missing newline (#526)

This commit is contained in:
Kamron Batman 2021-02-26 19:29:23 -08:00 committed by GitHub
parent 8811c40637
commit 06d5cdf593
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,7 +103,7 @@ namespace Server.Misc
AssemblyHandler.EnsureDirectory(BackupPath); AssemblyHandler.EnsureDirectory(BackupPath);
Directory.Move(args.OldSavePath, backupPath); Directory.Move(args.OldSavePath, backupPath);
Persistence.WriteConsole($"Created backup at {backupPath}"); Persistence.WriteConsoleLine($"Created backup at {backupPath}");
} }
} }
} }