From 18a0e26dd5744b02099f2882f695664eb4bbb59e Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Wed, 21 Jun 2017 09:37:53 -0400 Subject: [PATCH] Adds -clean to dm compile options --- TGServerService/Compiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();