You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Fixed typo in gdscript autocompletion.
There was a missing '!' sign, but autocompletion shows parent script members too.
(cherry picked from commit edaf77abd6)
This commit is contained in:
committed by
Rémi Verschelde
parent
e3e86567ba
commit
82ad45024f
@@ -387,7 +387,7 @@ static Ref<Reference> _get_parent_class(GDCompletionContext &context) {
|
|||||||
if (script.is_null()) {
|
if (script.is_null()) {
|
||||||
return REF();
|
return REF();
|
||||||
}
|
}
|
||||||
if (script->is_valid()) {
|
if (!script->is_valid()) {
|
||||||
|
|
||||||
return REF();
|
return REF();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user