From f3ada36d064b0292bc3cf73b7ea9a86c5afecfc0 Mon Sep 17 00:00:00 2001 From: kleonc <9283098+kleonc@users.noreply.github.com> Date: Sat, 6 May 2023 17:02:32 +0200 Subject: [PATCH] Fix incorrect reference to PacketPeerUDP.bind in migrating tutorial --- tutorials/migrating/upgrading_to_godot_4.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/migrating/upgrading_to_godot_4.rst b/tutorials/migrating/upgrading_to_godot_4.rst index 01b4f062a..dd15df4d3 100644 --- a/tutorials/migrating/upgrading_to_godot_4.rst +++ b/tutorials/migrating/upgrading_to_godot_4.rst @@ -430,7 +430,7 @@ table to find its new name. - MultiPlayerAPI's ``get_network_unique_id()`` is now ``get_unique_id()``. - MultiPlayerAPI's ``has_network_peer()`` is now ``has_multiplayer_peer()``. - PacketPeerUDP's ``is_listening()`` is now ``is_bound()``. -- PacketPeerUDP's ``listen()`` is now ``bound()``. +- PacketPeerUDP's ``listen()`` is now ``bind()``. - ParticleProcessMaterial's ``set_flag()`` is now ``set_particle_flag()``. - ResourceFormatLoader's ``get_dependencies()`` is now ``_get_dependencies()`` (note the leading underscore, which denotes a virtual method).