Merge multiplayer to dev branch #2

Merged
chrisbell merged 21 commits from multiplayer into develop 2025-08-07 22:06:02 +00:00
Showing only changes of commit 420d6ef950 - Show all commits

View File

@@ -118,7 +118,7 @@ func setup_multiplayer_peer(is_host: bool = false) -> void:
var host_id = Steam.getLobbyOwner(lobby_id)
print("[Multiplayer] Creating Client, attempting to connect to host: %s" % host_id)
var err = peer.create_client(host_id) ## REMOVED: Channel is handled by the peer automatically.
var err = peer.create_client(host_id, 0) ## REMOVED: Channel is handled by the peer automatically.
if err != OK:
print("[Multiplayer] !!! Failed to create client. Error: %s" % err)
return