diff --git a/Server/ScriptCompiler.cs b/Server/ScriptCompiler.cs index ec975318f..cfc15e5b2 100644 --- a/Server/ScriptCompiler.cs +++ b/Server/ScriptCompiler.cs @@ -96,6 +96,9 @@ namespace Server AppendCompilerOption( ref sb, "/d:Framework_2_0" ); AppendCompilerOption( ref sb, "/d:Framework_4_0" ); + AppendCompilerOption(ref sb, "/d:NEWTIMERS"); + AppendCompilerOption(ref sb, "/d:NEWPARENT"); + return (sb == null ? null : sb.ToString()); }