From ba11d121cf1391da544c8b0b68795d94550f4f82 Mon Sep 17 00:00:00 2001 From: p2r3 Date: Fri, 12 Sep 2025 14:52:49 +0300 Subject: [PATCH] reorder coordinates in BlockChange struct --- include/globals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/globals.h b/include/globals.h index 5db7421..ddb023b 100644 --- a/include/globals.h +++ b/include/globals.h @@ -176,8 +176,8 @@ extern uint16_t client_count; typedef struct { short x; - uint8_t y; short z; + uint8_t y; uint8_t block; } BlockChange;