From 51bad2e60684a15d7bfb0c3f9e85f9ea43c45642 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 25 Feb 2026 13:08:45 +0100 Subject: [PATCH] fix(client): bump protocol version to 15 Server bumped to v15 in Sprint 19 (save_result field) but client constant was never updated. Fixes cross-language fixture test failures. Co-Authored-By: Claude Opus 4.6 --- client/scripts/protocol/protocol.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/scripts/protocol/protocol.gd b/client/scripts/protocol/protocol.gd index 49175d52f..4f8d2a183 100644 --- a/client/scripts/protocol/protocol.gd +++ b/client/scripts/protocol/protocol.gd @@ -11,7 +11,7 @@ class_name Protocol ## Protocol version — must match server PROTOCOL_VERSION in bridge/types.rs. ## Reject snapshots where version != this value. -const PROTOCOL_VERSION: int = 14 +const PROTOCOL_VERSION: int = 15 # -- Decode: bytes from server → GDScript types --------------------------------