Browse Source

[MP] Fix watch properties not being correctly removed

(cherry picked from commit 3860f2e36698eac4a1e045ef1a626d0982207e7c)
Fabio Alessandrelli 2 năm trước cách đây
mục cha
commit
560c52cef2
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      modules/multiplayer/scene_replication_config.cpp

+ 1 - 0
modules/multiplayer/scene_replication_config.cpp

@@ -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 {