1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Merge pull request #8062 from magyar123/master

Fixed typo in gdscript autocompletion.
This commit is contained in:
Andreas Haas
2017-03-18 00:05:28 +01:00
committed by GitHub

View File

@@ -405,7 +405,7 @@ static Ref<Reference> _get_parent_class(GDCompletionContext &context) {
if (script.is_null()) {
return REF();
}
if (script->is_valid()) {
if (!script->is_valid()) {
return REF();
}