mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix removing connected peer during disconnection
(cherry picked from commit bd8380db55
)
This commit is contained in:
parent
49c95e7bbb
commit
3e908bfef3
1 changed files with 1 additions and 1 deletions
|
@ -428,7 +428,7 @@ void SceneMultiplayer::disconnect_peer(int p_id) {
|
|||
if (pending_peers.has(p_id)) {
|
||||
pending_peers.erase(p_id);
|
||||
} else if (connected_peers.has(p_id)) {
|
||||
connected_peers.has(p_id);
|
||||
connected_peers.erase(p_id);
|
||||
}
|
||||
multiplayer_peer->disconnect_peer(p_id);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue