1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 04:37:46 +00:00

Reduce log spam from position updates

This commit is contained in:
Joshua Goins 2025-05-02 00:31:47 -04:00
parent 9eb9eca1c8
commit 80b06b3294

View file

@ -588,11 +588,6 @@ async fn client_loop(
}
}
ClientZoneIpcData::UpdatePositionHandler { position, rotation } => {
tracing::info!(
"Character moved to {position:#?} {}",
rotation.to_degrees()
);
connection.player_data.rotation = *rotation;
connection.player_data.position = *position;