diff options
author | Bernhard Liebl <Bernhard.Liebl@gmx.org> | 2018-01-18 22:25:29 +0100 |
---|---|---|
committer | Bernhard Liebl <Bernhard.Liebl@gmx.org> | 2018-01-18 22:29:45 +0100 |
commit | 67ae443c5696b96590ca4c32cb2828692e805b73 (patch) | |
tree | e0dfb1a246b9ffb45655d9f86ccebca700f63506 | |
parent | 9f479f096cb50fa8d1215e68c262f110116114ef (diff) |
Suppress errors on autocompletion for preload()
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index ed21194dd3..75fb7e15c4 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -460,7 +460,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s //this can be too slow for just validating code if (for_completion && ScriptCodeCompletionCache::get_singleton()) { res = ScriptCodeCompletionCache::get_singleton()->get_cached_resource(path); - } else { + } else if (FileAccess::exists(path)) { res = ResourceLoader::load(path); } if (!res.is_valid()) { |