From e68a9eb5e9e15372313f9017be4a2d58fb690bfc Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sat, 11 Oct 2025 00:24:11 +0200 Subject: clippy + fmt; start using if let chains --- server/src/entity/conveyor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/src/entity/conveyor.rs') diff --git a/server/src/entity/conveyor.rs b/server/src/entity/conveyor.rs index e31410e3..9534b045 100644 --- a/server/src/entity/conveyor.rs +++ b/server/src/entity/conveyor.rs @@ -17,8 +17,8 @@ */ use super::{Entity, EntityContext}; use crate::interaction::interact; -use anyhow::{anyhow, bail, Result}; -use hurrycurry_protocol::{glam::IVec2, ItemLocation}; +use anyhow::{Result, anyhow, bail}; +use hurrycurry_protocol::{ItemLocation, glam::IVec2}; #[derive(Debug, Clone)] pub struct Conveyor { -- cgit v1.3