fix compilation error
All checks were successful
Build and Test / puyopuyo (push) Successful in 5m31s
Build and Test / fast-racing-neo (push) Successful in 6m2s
Build and Test / mario-tennis (push) Successful in 6m4s
Build and Test / splatoon-testfire (push) Successful in 6m17s
Build and Test / wii-u-chat (push) Successful in 6m32s
Build and Test / sonic-transformed (push) Successful in 6m35s
Build and Test / minecraft-wiiu (push) Successful in 6m43s
Build and Test / wii-sports-club (push) Successful in 6m44s
Build and Test / splatoon (push) Successful in 7m4s
Build and Test / friends (push) Successful in 7m54s
Build and Test / super-mario-maker (push) Successful in 10m51s

This commit is contained in:
Maple Nebel 2026-07-18 01:24:58 +02:00
commit 40cdec017c

View file

@ -372,7 +372,7 @@ impl<C: Crypto> Server<C> {
conn.crypto_instance.decrypt_incoming(payload);
conn.packet_buffer.extend_from_slice(payload);
conn.client_packet_counter += 1;
if packet.fragment_id().unwrap() != 0 {
if *packet.fragment_id().unwrap() != 0 {
info!("handeling fragmented packet");
continue;
}