diff options
Diffstat (limited to 'src/net/packets.hpp')
-rw-r--r-- | src/net/packets.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/packets.hpp b/src/net/packets.hpp index 54167e8..4bb412f 100644 --- a/src/net/packets.hpp +++ b/src/net/packets.hpp @@ -188,7 +188,7 @@ RecvResult net_recv_opacket(Session *s, NetPacket_Head<id>& head, bool *has_opt, if (nat.magic_packet_length < sizeof(NetPacket_Head<id>)) return RecvResult::Error; size_t bytes_repeat = nat.magic_packet_length - sizeof(NetPacket_Head<id>); - if (bytes_repeat % sizeof(NetPacket_Repeat<id>)) + if (bytes_repeat % sizeof(NetPacket_Option<id>)) return RecvResult::Error; size_t has_opt_pls = bytes_repeat / sizeof(NetPacket_Option<id>); if (has_opt_pls > 1) |