From d006c7273e246cf27368ce396b3a3f6a780eadd0 Mon Sep 17 00:00:00 2001 From: Daniele Marotta Date: Thu, 15 Jan 2026 11:58:47 +0100 Subject: [PATCH] replaced jumping flag with jump count integer --- proto/decentraland/kernel/comms/rfc4/comms.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/decentraland/kernel/comms/rfc4/comms.proto b/proto/decentraland/kernel/comms/rfc4/comms.proto index d6f402d0..e11fe9f1 100644 --- a/proto/decentraland/kernel/comms/rfc4/comms.proto +++ b/proto/decentraland/kernel/comms/rfc4/comms.proto @@ -52,7 +52,7 @@ message Movement { float movement_blend_value = 8; float slide_blend_value = 9; bool is_grounded = 10; - bool is_jumping = 11; + int32 jump_count = 11; bool is_long_jump = 12; bool is_long_fall = 13; bool is_falling = 14;