summaryrefslogtreecommitdiff
path: root/core/object/script_language.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2021-02-13 18:40:58 +0100
committerkobewi <kobewi4e@gmail.com>2021-02-13 18:51:48 +0100
commit4db47eb32e550fb1f2d8967907b66b2d41f09050 (patch)
tree4ecec543415276696c43a59bf01ad18d7082a89d /core/object/script_language.cpp
parent7128f09a5d9f00b7f8326c7f6bc540309da3e8b6 (diff)
Don't save project settings when not necessary
Diffstat (limited to 'core/object/script_language.cpp')
-rw-r--r--core/object/script_language.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/object/script_language.cpp b/core/object/script_language.cpp
index d0636e8b84..42fb0a0caf 100644
--- a/core/object/script_language.cpp
+++ b/core/object/script_language.cpp
@@ -275,6 +275,14 @@ void ScriptServer::save_global_classes() {
gcarr.push_back(d);
}
+ Array old;
+ if (ProjectSettings::get_singleton()->has_setting("_global_script_classes")) {
+ old = ProjectSettings::get_singleton()->get("_global_script_classes");
+ }
+ if ((!old.is_empty() || gcarr.is_empty()) && gcarr.hash() == old.hash()) {
+ return;
+ }
+
if (gcarr.is_empty()) {
if (ProjectSettings::get_singleton()->has_setting("_global_script_classes")) {
ProjectSettings::get_singleton()->clear("_global_script_classes");