diff --git a/src/internals/config.rs b/src/internals/config.rs index 7c42c70..f5b3b53 100644 --- a/src/internals/config.rs +++ b/src/internals/config.rs @@ -1,7 +1,7 @@ use std::sync::LazyLock; pub struct ConfigMeta { - pub guild_id: u64, + // pub guild_id: u64, pub embed_color: i32, pub ready_notify: u64, pub rss_channel: u64, @@ -15,7 +15,7 @@ pub static BINARY_PROPERTIES: LazyLock = LazyLock::new(|| ConfigMeta #[cfg(not(feature = "production"))] pub static BINARY_PROPERTIES: LazyLock = LazyLock::new(|| ConfigMeta::new() - .guild_id(865673694184996885) + // .guild_id(865673694184996885) .embed_color(0xf1d63c) .ready_notify(865673694184996888) .rss_channel(865673694184996888) @@ -25,7 +25,7 @@ pub static BINARY_PROPERTIES: LazyLock = LazyLock::new(|| impl ConfigMeta { fn new() -> Self { Self { - guild_id: 865673694184996885, + // guild_id: 865673694184996885, embed_color: 0x5a99c7, ready_notify: 865673694184996888, rss_channel: 865673694184996888, @@ -37,11 +37,11 @@ impl ConfigMeta { } // Scalable functions below; - #[cfg(not(feature = "production"))] +/* #[cfg(not(feature = "production"))] fn guild_id(mut self, guild_id: u64) -> Self { self.guild_id = guild_id; self - } + } */ #[cfg(not(feature = "production"))] fn embed_color(mut self, color: i32) -> Self {