diff --git a/Server/ScriptCompiler.cs b/Server/ScriptCompiler.cs index 8ae4042d7..e72111f28 100644 --- a/Server/ScriptCompiler.cs +++ b/Server/ScriptCompiler.cs @@ -80,7 +80,9 @@ namespace Server public static string GetCompilerOptions( bool debug ) { - StringBuilder sb = null; + StringBuilder sb = null; + + AppendCompilerOption( ref sb, "/unsafe" ); if( !debug ) AppendCompilerOption( ref sb, "/optimize" );