From 93c9d2dcb4a6a1ac51e190a340f30b57643a9687 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Fri, 27 Feb 2026 21:36:32 +0100 Subject: [PATCH] fix(client): bump protocol version to 17 after server merge 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 81ada4e2c..f662f2439 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 = 16 +const PROTOCOL_VERSION: int = 17 # -- Decode: bytes from server → GDScript types --------------------------------