Fixed typo

This commit is contained in:
2025-07-22 00:12:53 -04:00
parent 66b11b92ea
commit 7cac892c2a
2 changed files with 2 additions and 2 deletions

View File

@@ -140,7 +140,7 @@ pub(crate) async fn handle_mouse_cmd_req(
// World service integration - movement events
pub(crate) async fn handle_togggle_move_req(
pub(crate) async fn handle_toggle_move_req(
packet: Packet,
connection_service: Arc<ConnectionService>,
connection_id: String,

View File

@@ -105,7 +105,7 @@ impl PacketRouter {
// World Packets (enhanced with world service integration)
PacketType::PakcsChangeMapReq => world::handle_change_map_req(packet, self.character_client.clone(), self.connection_service.clone(), connection_id, self.world_client_manager.clone()).await,
PacketType::PakcsMouseCmd => world::handle_mouse_cmd_req(packet, self.connection_service.clone(), connection_id, self.world_client_manager.clone()).await,
PacketType::PakcsToggleMove => world::handle_togggle_move_req(packet, self.connection_service.clone(), connection_id).await,
PacketType::PakcsToggleMove => world::handle_toggle_move_req(packet, self.connection_service.clone(), connection_id).await,
PacketType::PakcsSetAnimation => world::handle_set_animation_req(packet, self.connection_service.clone(), connection_id).await,
// Chat Packets