Fix super call in various get_configuration_warnings methods

This commit is contained in:
A Thousand Ships
2024-06-19 16:40:50 +02:00
parent b6223c0df0
commit 9dc231366d
34 changed files with 36 additions and 36 deletions

View File

@@ -288,7 +288,7 @@ void PathFollow2D::_validate_property(PropertyInfo &p_property) const {
}
PackedStringArray PathFollow2D::get_configuration_warnings() const {
PackedStringArray warnings = Node::get_configuration_warnings();
PackedStringArray warnings = Node2D::get_configuration_warnings();
if (is_visible_in_tree() && is_inside_tree()) {
if (!Object::cast_to<Path2D>(get_parent())) {