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 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 13:08:45 +01:00
co-authored by Claude Opus 4.6
parent cf4919913e
commit 51bad2e606
+1 -1
View File
@@ -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 --------------------------------