Actually handle GameOptions package

This commit is contained in:
Sofia 2026-08-03 19:54:20 +03:00
parent 6ba4e37bab
commit e0fd2cf804

View File

@ -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;
}
}
_ => {}
},
},