From 433a2ca3503d70d10eb07372e9ff76865d18a6f9 Mon Sep 17 00:00:00 2001 From: p2r3 Date: Sat, 30 Aug 2025 21:46:34 +0300 Subject: [PATCH] add missing return statement --- src/packets.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/packets.c b/src/packets.c index e7228d2..245c100 100644 --- a/src/packets.c +++ b/src/packets.c @@ -1157,6 +1157,7 @@ int sc_pickupItem (int client_fd, int collected, int collector, uint8_t count) { writeVarInt(client_fd, collector); writeVarInt(client_fd, count); + return 0; } // S->C Registry Data (multiple packets) and Update Tags (configuration, multiple packets)