You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
GDScript: More reliable check if loading a template.
Prevents showing some useless parse errors in the console.
This commit is contained in:
@@ -616,7 +616,7 @@ Error GDScript::reload(bool p_keep_state) {
|
||||
if (basedir != "")
|
||||
basedir = basedir.get_base_dir();
|
||||
|
||||
if (basedir != "" && basedir.find("res://") == -1 && basedir.find("user://") == -1) {
|
||||
if (source.find("%BASE%") != -1) {
|
||||
//loading a template, don't parse
|
||||
return OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user