summaryrefslogtreecommitdiff
path: root/doc/classes/UDPServer.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/UDPServer.xml')
-rw-r--r--doc/classes/UDPServer.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/UDPServer.xml b/doc/classes/UDPServer.xml
index 60d1986bee..ccb6a67a0e 100644
--- a/doc/classes/UDPServer.xml
+++ b/doc/classes/UDPServer.xml
@@ -86,7 +86,7 @@
func _process(delta):
if !connected:
# Try to contact server
- udp.put_packet("The answer is... 42!".to_utf8())
+ udp.put_packet("The answer is... 42!".to_utf8_buffer())
if udp.get_available_packet_count() > 0:
print("Connected: %s" % udp.get_packet().get_string_from_utf8())
connected = true
@@ -110,7 +110,7 @@
if (!_connected)
{
// Try to contact server
- _udp.PutPacket("The Answer Is..42!".ToUtf8());
+ _udp.PutPacket("The Answer Is..42!".ToUtf8Buffer());
}
if (_udp.GetAvailablePacketCount() > 0)
{