From 5d2f9a777cd83ae29e78fd72ecb66390543d4284 Mon Sep 17 00:00:00 2001 From: Tom Date: Sat, 8 Apr 2023 20:58:55 +0200 Subject: [PATCH] To be || not to be --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c5115cb..3a99dd4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -137,7 +137,7 @@ async fn default_register(ctx: Context<'_>) -> Result<(), Error> { ctx.say(format!("Commands: {}", commands.len())).await?; fn globals_filter(name: &String) -> bool { - name.starts_with("invite") or name.starts_with("boop") or name.starts_with("fix") + name.starts_with("invite") || name.starts_with("boop") || name.starts_with("fix") } // If the user is the bot owner, also correct the global commands.