cargo clippy --fix

This commit is contained in:
Snowiiii
2024-08-14 21:39:05 +02:00
parent 6485c99167
commit 03cc991bfd
4 changed files with 8 additions and 21 deletions

View File

@@ -1,4 +1,3 @@
use std::collections::VecDeque;
pub struct RadialIterator {
radius: i32,

View File

@@ -1,7 +1,6 @@
use std::{
io::{Read, Seek},
path::PathBuf,
sync::{atomic::AtomicUsize, Arc},
};
use flate2::bufread::ZlibDecoder;
@@ -9,11 +8,8 @@ use itertools::Itertools;
use rayon::prelude::*;
use thiserror::Error;
use tokio::{
fs::File,
io::{AsyncReadExt, AsyncSeekExt},
runtime::Handle,
sync::{mpsc, oneshot, Mutex},
task::spawn_blocking,
sync::mpsc,
};
use crate::chunk::ChunkData;

View File

@@ -40,10 +40,8 @@ impl Client {
if self.protocol_version < CURRENT_MC_PROTOCOL as i32 {
let protocol = self.protocol_version;
self.kick(&format!("Client outdated ({protocol}), Server uses Minecraft {CURRENT_MC_VERSION}, Protocol {CURRENT_MC_PROTOCOL}"));
return;
} else if self.protocol_version > CURRENT_MC_PROTOCOL as i32 {
self.kick(&format!("Server outdated, Server uses Minecraft {CURRENT_MC_VERSION}, Protocol {CURRENT_MC_PROTOCOL}"));
return;
}
}
}

View File

@@ -32,19 +32,13 @@ impl<'a> Command<'a> for GamemodeCommand {
}
Err(_) => {
// try to parse from number
match mode_str.parse::<u8>() {
Ok(i) => match GameMode::from_u8(i) {
Some(mode) => {
player.set_gamemode(mode);
player.send_system_message(
format!("Set own game mode to {:?}", mode).into(),
);
return;
}
None => {}
},
Err(_) => {}
}
if let Ok(i) = mode_str.parse::<u8>() { if let Some(mode) = GameMode::from_u8(i) {
player.set_gamemode(mode);
player.send_system_message(
format!("Set own game mode to {:?}", mode).into(),
);
return;
} }
player.send_system_message(
TextComponent::from("Invalid gamemode")