From 5f75cb687ecf2ab66ed1b16d8f5b8be599394e38 Mon Sep 17 00:00:00 2001 From: p2r3 Date: Fri, 29 Aug 2025 23:02:48 +0300 Subject: [PATCH] fix up player flag descriptions --- include/globals.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/globals.h b/include/globals.h index 8a6c8e2..f9546b6 100644 --- a/include/globals.h +++ b/include/globals.h @@ -132,11 +132,11 @@ typedef struct { // Usage depends on player's flags, see below // When no flags are set, acts as cursor item count uint8_t flagval_8; - // 0x01 - attack cooldown + // 0x01 - attack cooldown, uses flagval_8 as the timer // 0x02 - has not spawned yet // 0x04 - sneaking // 0x08 - sprinting - // 0x10 - eating, makes extra8 act as eating timer + // 0x10 - eating, makes flagval_16 act as eating timer // 0x20 - client not fully loaded uint8_t flags; } PlayerData;