1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #101416 from MrBlockers/91342-nested-spawner

Fix node cache errors on nested MultiplayerSpawners
This commit is contained in:
Thaddeus Crews
2025-07-10 11:39:23 -05:00

View File

@@ -72,7 +72,7 @@ private:
HashMap<int, PeerInfo> peers_info;
uint32_t last_net_id = 0;
HashMap<ObjectID, TrackedNode> tracked_nodes;
HashSet<ObjectID> spawned_nodes;
RBSet<ObjectID> spawned_nodes;
HashSet<ObjectID> sync_nodes;
// Pending local spawn information (handles spawning nested nodes during ready).