diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-12-07 14:00:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 14:00:59 +0100 |
commit | 46d384060ef20672e23b3c1ffe947ff7898ecf75 (patch) | |
tree | 3d93fe69a70c24618074e4eb329eff4bf0fd8aca /core/multiplayer/multiplayer_replicator.cpp | |
parent | a33b85c122fd18534ce556ae02bc87c36817a5b3 (diff) | |
parent | dd30253cdcf9b43e401cb3ba6b973f8890551a81 (diff) | |
download | redot-engine-46d384060ef20672e23b3c1ffe947ff7898ecf75.tar.gz |
Merge pull request #35901 from nathanfranke/pool-byte-array-subarray-exclusive
Diffstat (limited to 'core/multiplayer/multiplayer_replicator.cpp')
-rw-r--r-- | core/multiplayer/multiplayer_replicator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/multiplayer/multiplayer_replicator.cpp b/core/multiplayer/multiplayer_replicator.cpp index 6604510394..c57562552a 100644 --- a/core/multiplayer/multiplayer_replicator.cpp +++ b/core/multiplayer/multiplayer_replicator.cpp @@ -207,7 +207,7 @@ Error MultiplayerReplicator::_send_default_spawn_despawn(int p_peer_id, const Re const Vector<StringName> names = rel_path.get_names(); ERR_FAIL_COND_V(names.size() < 2, ERR_INVALID_PARAMETER); - NodePath parent = NodePath(names.subarray(0, names.size() - 2), false); + NodePath parent = NodePath(names.slice(0, names.size() - 1), false); ERR_FAIL_COND_V_MSG(!root_node->has_node(parent), ERR_INVALID_PARAMETER, "Path not found: " + parent); int path_id = 0; |