From f8dfbaa2869f40253ccd19ee3655b8dbd5390d8e Mon Sep 17 00:00:00 2001 From: metamuffin Date: Fri, 6 Jun 2025 21:38:24 +0200 Subject: manual clippy and other cleanup --- server/src/entity/pedestrians.rs | 2 +- server/src/entity/player_portal.rs | 2 +- server/src/entity/tram.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'server/src/entity') diff --git a/server/src/entity/pedestrians.rs b/server/src/entity/pedestrians.rs index cedb9e46..2ddbb920 100644 --- a/server/src/entity/pedestrians.rs +++ b/server/src/entity/pedestrians.rs @@ -47,7 +47,7 @@ impl Entity for Pedestrians { }, class: PlayerClass::Customer, id: Some(id), - position: self.points.get(0).copied(), + position: self.points.first().copied(), }); self.players.insert(id, 0); self.cooldown += self.spawn_delay_distr.sample(&mut rng()).max(0.1); diff --git a/server/src/entity/player_portal.rs b/server/src/entity/player_portal.rs index c0faf767..96168faa 100644 --- a/server/src/entity/player_portal.rs +++ b/server/src/entity/player_portal.rs @@ -15,7 +15,7 @@ along with this program. If not, see . */ -use super::{EntityContext, Entity}; +use super::{Entity, EntityContext}; use anyhow::{anyhow, Result}; use hurrycurry_protocol::{glam::Vec2, PacketC}; diff --git a/server/src/entity/tram.rs b/server/src/entity/tram.rs index d1d1effa..06e151d7 100644 --- a/server/src/entity/tram.rs +++ b/server/src/entity/tram.rs @@ -43,7 +43,7 @@ impl Entity for Tram { character: self.character, class: PlayerClass::Tram, id: Some(id), - position: self.points.get(0).copied(), + position: self.points.first().copied(), }); self.ids.push(id); } -- cgit v1.2.3-70-g09d2