mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Use the outgoing split sequence number for every outgoing packet (#4864)
(instead of the last incoming sequence number...) Fixes #4848
This commit is contained in:
parent
e509ead680
commit
abd68d3466
1 changed files with 1 additions and 1 deletions
|
@ -1237,7 +1237,7 @@ void UDPPeer::RunCommandQueues(
|
|||
u16 UDPPeer::getNextSplitSequenceNumber(u8 channel)
|
||||
{
|
||||
assert(channel < CHANNEL_COUNT); // Pre-condition
|
||||
return channels[channel].readNextIncomingSeqNum();
|
||||
return channels[channel].readNextSplitSeqNum();
|
||||
}
|
||||
|
||||
void UDPPeer::setNextSplitSequenceNumber(u8 channel, u16 seqnum)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue