Skip to content

Commit

Permalink
Fix missing parameter in webrtc_signaling "connected" handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Faless committed Nov 16, 2023
1 parent 40ce32c commit 9484000
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions networking/webrtc_signaling/demo/client_ui.gd
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ func _mp_peer_disconnected(id: int):
_log("[Multiplayer] Peer %d disconnected" % id)


func _connected(id):
_log("[Signaling] Server connected with ID: %d" % id)
func _connected(id, use_mesh):
_log("[Signaling] Server connected with ID: %d. Mesh: %s" % [id, use_mesh])


func _disconnected():
Expand Down

0 comments on commit 9484000

Please sign in to comment.