From e0fd2cf804e7a649aed2a07a42f3f1b3d87ae76e Mon Sep 17 00:00:00 2001 From: Sofia Date: Mon, 3 Aug 2026 19:54:20 +0300 Subject: [PATCH] Actually handle GameOptions package --- rust/src/net/protocol.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rust/src/net/protocol.rs b/rust/src/net/protocol.rs index deea49d..227c677 100644 --- a/rust/src/net/protocol.rs +++ b/rust/src/net/protocol.rs @@ -239,6 +239,11 @@ impl NetworkManager { game.bind_mut().handle_telegrenade_teleport(player_id, to); } } + Package::GameOptions(opts) => { + if let Some(game) = &mut Game::singleton() { + game.bind_mut().opts = opts; + } + } _ => {} }, },