diff --git a/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs b/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs index 8b69627cf7..3b92931810 100644 --- a/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs +++ b/src/Tgstation.Server.Host/Components/Deployment/DreamMaker.cs @@ -942,7 +942,7 @@ namespace Tgstation.Server.Host.Components.Deployment } } - dmeBytes = Encoding.UTF8.GetBytes(String.Join(Environment.NewLine, dmeLines)); + dmeBytes = Encoding.UTF8.GetBytes(String.Join('\n', dmeLines)); await ioManager.WriteAllBytes(dmePath, dmeBytes, cancellationToken); }