RiptideNetworking / Riptide

Lightweight C# networking solution for multiplayer games.
https://riptide.tomweiland.net
MIT License
1.04k stars 141 forks source link

Fix ack message sending redundant sequence ID #130

Closed RudyTheDev closed 4 months ago

RudyTheDev commented 5 months ago

In SendAck() the braces were missing around the else block, so it's always appending the sequence id ushort to the ack message, which isn't used in HandleAck() later if the bool was actually false.