From be72cccb2a006457f0f180f53d7d25b68891a89b Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 25 Feb 2026 23:53:37 +0100 Subject: [PATCH] fix(client): bump protocol version to 16 Match server v16 protocol (triangle crisis events on ObserverSnapshot). 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 c7166c479..81ada4e2c 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 = 15 +const PROTOCOL_VERSION: int = 16 # -- Decode: bytes from server → GDScript types --------------------------------