From 3535d2cda1ad29ab7e9536aac8e3aa868dab2a41 Mon Sep 17 00:00:00 2001 From: DaniD3v Date: Thu, 29 Aug 2024 16:52:22 +0200 Subject: [PATCH] Fixed new clippy lint --- pumpkin/src/config/mod.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pumpkin/src/config/mod.rs b/pumpkin/src/config/mod.rs index cc47d9772..d5e1876c5 100644 --- a/pumpkin/src/config/mod.rs +++ b/pumpkin/src/config/mod.rs @@ -14,10 +14,12 @@ pub mod resource_pack; /// Current Config version of the Base Config const CURRENT_BASE_VERSION: &str = "1.0.0"; -#[derive(Deserialize, Serialize)] -/// The idea is that Pumpkin should very customizable, You can Enable or Disable Features depending on your needs. +/// The idea is that Pumpkin should very customizable. +/// You can Enable or Disable Features depending on your needs. +/// /// This also allows you get some Performance or Resource boosts. /// Important: The Configuration should match Vanilla by default +#[derive(Deserialize, Serialize)] pub struct AdvancedConfiguration { pub proxy: ProxyConfig, pub authentication: AuthenticationConfig,