From 7f1a0706bbb472db1c64f8decdd29a5a7f1ecd66 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Mon, 22 Apr 2019 15:24:51 +0100 Subject: [PATCH] Update page 'Protocol' --- Protocol.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Protocol.md b/Protocol.md index 6041bb6..6565d5b 100644 --- a/Protocol.md +++ b/Protocol.md @@ -81,7 +81,7 @@ And here an example to write a packet in C#: // Command string command = "PING"; -uint id = "457545645"; +uint id = 457545645; string argument1 = "Hello"; string argument2 = "World!"; string packet = command + "\n" + id.ToString() + ";" + argument1 + ";" + argument2 + "\n";