You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
Rename remove() to remove_at() when removing by index
This commit is contained in:
committed by
Aaron Record
parent
5efe80f308
commit
e078f970db
@@ -62,7 +62,7 @@ static Array _sanitize_node_pinned_properties(Node *p_node) {
|
||||
if (storable_properties.has(pinned[i])) {
|
||||
i++;
|
||||
} else {
|
||||
pinned.remove(i);
|
||||
pinned.remove_at(i);
|
||||
}
|
||||
} while (i < pinned.size());
|
||||
if (pinned.is_empty()) {
|
||||
|
||||
Reference in New Issue
Block a user