forked from Skynet/discord-bot
fix: cannot have an ID of 0 for any role, channel or server
This commit is contained in:
parent
86f71f0fa4
commit
30287466cb
1 changed files with 3 additions and 3 deletions
|
@ -57,9 +57,9 @@ pub fn get_config() -> Config {
|
|||
mail_pass: "".to_string(),
|
||||
wolves_url: "".to_string(),
|
||||
wolves_api: "".to_string(),
|
||||
committee_server: GuildId::new(0),
|
||||
committee_role: RoleId::new(0),
|
||||
committee_category: ChannelId::new(0),
|
||||
committee_server: GuildId::new(1),
|
||||
committee_role: RoleId::new(1),
|
||||
committee_category: ChannelId::new(1),
|
||||
};
|
||||
|
||||
if let Ok(x) = env::var("DATABASE_HOME") {
|
||||
|
|
Loading…
Add table
Reference in a new issue