From d1bbfdfbfdbfeaff8012cd7e80e2ee6e44bc8120 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 12 May 2025 22:00:23 -0400 Subject: [PATCH] Send voice id when spawning player Forgot to do this, so everyone sounded like a man - oops? --- src/world/connection.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/world/connection.rs b/src/world/connection.rs index d94eb94..81545e8 100644 --- a/src/world/connection.rs +++ b/src/world/connection.rs @@ -785,6 +785,7 @@ impl ZoneConnection { models: inventory.get_model_ids(&mut game_data), pos: exit_position.unwrap_or_default(), rotation: exit_rotation.unwrap_or(0.0), + voice: chara_details.chara_make.voice_id as u8, ..Default::default() } }