From 73ab0fe6ee0429f8dc2a5e6f7fdfc83ba0e39662 Mon Sep 17 00:00:00 2001 From: core Date: Wed, 19 Apr 2023 19:51:13 -0400 Subject: [PATCH] api work pt2 --- protocol/src/pbuf/message_c2s.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol/src/pbuf/message_c2s.proto b/protocol/src/pbuf/message_c2s.proto index 520590ff364ec57eda28e12e98c971571a004525..18b637f5021c18b44e22c70b011dacb8ef6884bf 100644 --- a/protocol/src/pbuf/message_c2s.proto +++ b/protocol/src/pbuf/message_c2s.proto @@ -11,8 +11,8 @@ message MessageC2SHello { string requested_username = 2; // The username that the client is requesting. protocol.state.State next_state = 3; // The state the connection will go into after the handshake. - optional string token = 4; - optional string user = 5; + string token = 4; + string user = 5; } message MessageC2SGoodbye {