Skip to content

Commit

Permalink
Fix missing parameter in webrtc_signaling "connected" handler (#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
Faless authored Feb 7, 2024
1 parent 196df0c commit f954d78
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 f954d78

Please sign in to comment.