diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-07-22 17:28:17 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-07-22 17:28:17 +0200 |
commit | df170d81ccf5aad64817091979708f95396cfc93 (patch) | |
tree | 68b28c6407ba87bdc153c1aa491a9c02fc8c3a01 /modules | |
parent | 2f365bb9bb9f0402100ecd1c05670065fd95acf3 (diff) |
Mono: Default to not shipping C# scripts content
Fixes #20053.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/csharp_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 62a6b96bb5..6efe9b283d 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -121,7 +121,7 @@ void CSharpLanguage::init() { #ifdef TOOLS_ENABLED EditorNode::add_init_callback(&gdsharp_editor_init_callback); - GLOBAL_DEF("mono/export/include_scripts_content", true); + GLOBAL_DEF("mono/export/include_scripts_content", false); #endif } |