diff --git a/TGServerService/Compiler.cs b/TGServerService/Compiler.cs index ba8e0b5c0a..017ccee6d1 100644 --- a/TGServerService/Compiler.cs +++ b/TGServerService/Compiler.cs @@ -365,7 +365,7 @@ namespace TGServerService using (var DM = new Process()) //will kill the process if the thread is terminated { DM.StartInfo.FileName = ByondDirectory + "/bin/dm.exe"; - DM.StartInfo.Arguments = dmePath; + DM.StartInfo.Arguments = String.Format("-clean {0}", dmePath); DM.StartInfo.RedirectStandardOutput = true; DM.StartInfo.UseShellExecute = false; var OutputList = new StringBuilder();