summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorWilson E. Alvarez <wilson.e.alvarez1@gmail.com>2020-07-27 23:05:34 -0400
committerWilson E. Alvarez <wilson.e.alvarez1@gmail.com>2020-07-28 09:25:34 -0400
commite264ae20d2a828201a50868b3af334a3f8c8a37c (patch)
treeed387d1d1b1f87f592912d0e9bc3b6286a1247c5 /core
parenta6916d1f179f760f015f385c01729d205af97abe (diff)
Check if global class file still exists before registering it
Diffstat (limited to 'core')
-rw-r--r--core/script_language.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/script_language.cpp b/core/script_language.cpp
index b63aeb952c..5176882662 100644
--- a/core/script_language.cpp
+++ b/core/script_language.cpp
@@ -33,6 +33,7 @@
#include "core/core_string_names.h"
#include "core/debugger/engine_debugger.h"
#include "core/debugger/script_debugger.h"
+#include "core/os/file_access.h"
#include "core/project_settings.h"
#include <stdint.h>
@@ -162,7 +163,7 @@ void ScriptServer::init_languages() {
for (int i = 0; i < script_classes.size(); i++) {
Dictionary c = script_classes[i];
- if (!c.has("class") || !c.has("language") || !c.has("path") || !c.has("base")) {
+ if (!c.has("class") || !c.has("language") || !c.has("path") || !FileAccess::exists(c["path"]) || !c.has("base")) {
continue;
}
add_global_class(c["class"], c["base"], c["language"], c["path"]);