From 1feec914b7b109e45847ac3b50107711d507bec8 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 4 Mar 2026 22:29:38 +0100 Subject: [PATCH] =?UTF-8?q?fix(client):=20bump=20PROTOCOL=5FVERSION=2017?= =?UTF-8?q?=20=E2=86=92=2018=20to=20match=20server?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Server #580 bumped to 18 for debug_response field. Client was still at 17, causing every snapshot to be rejected — game unplayable. 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 a8c605c56..d3b208349 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 = 17 +const PROTOCOL_VERSION: int = 18 # -- Decode: bytes from server → GDScript types --------------------------------