Merge pull request #81033 from Faless/mp/fix_watch_prop_remove

[MP] Fix watch properties not being correctly removed
This commit is contained in:
Rémi Verschelde 2023-08-28 12:09:01 +02:00
commit 231daee7b4
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -162,6 +162,7 @@ void SceneReplicationConfig::remove_property(const NodePath &p_path) {
properties.erase(p_path);
sync_props.erase(p_path);
spawn_props.erase(p_path);
watch_props.clear();
}
bool SceneReplicationConfig::has_property(const NodePath &p_path) const {