From f8cdacbd496fd98e6c5715f9f09b6e1f8731f66c Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 12 Feb 2026 20:27:56 +0100 Subject: [PATCH] feat(main): adding default Gateway to the bot --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index a8fd923..5cfb24c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,7 +12,7 @@ async fn main() { let token: String = env::var("DISCORD_TOKEN").expect("❌ | DISCORD_TOKEN missing (check the env file)"); - let intents: GatewayIntents = GatewayIntents::empty(); + let intents: GatewayIntents = GatewayIntents::default(); let bot: Bot = Bot { commands: commands::import(),