mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-07 07:41:50 -05:00
GDScript: Fix get_*_list() methods return incorrect info
This commit is contained in:
@@ -277,7 +277,7 @@ struct GDScriptUtilityFunctionsDefinitions {
|
||||
Vector<StringName> sname;
|
||||
|
||||
while (p->_owner) {
|
||||
sname.push_back(p->name);
|
||||
sname.push_back(p->local_name);
|
||||
p = p->_owner;
|
||||
}
|
||||
sname.reverse();
|
||||
|
||||
Reference in New Issue
Block a user