Send response in same sequence channel

This commit is contained in:
Sardelka 2022-07-20 09:11:07 +08:00
parent 1372a5c33f
commit 264158957c

View File

@ -119,7 +119,7 @@ namespace RageCoop.Client
response.Write((byte)PacketType.Response); response.Write((byte)PacketType.Response);
response.Write(id); response.Write(id);
handler(message.ReadBytes(len)).Pack(response); handler(message.ReadBytes(len)).Pack(response);
Client.SendMessage(response, NetDeliveryMethod.ReliableOrdered,(int)ConnectionChannel.RequestResponse); Client.SendMessage(response, NetDeliveryMethod.ReliableOrdered,message.SequenceChannel);
} }
break; break;
} }