diff options
| author | seth <[email protected]> | 2024-02-18 18:21:54 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-18 18:38:30 -0500 |
| commit | db362aefe343e2cb27d6c01c89464b0a8100b295 (patch) | |
| tree | d4d40733c1b0e17cf9ec68cb6f71bdd0aebc904a /src/commands/optional | |
| parent | f2cb41b11aa247ae1425d10c9162e7386089583c (diff) | |
fix duplicated command registrations
Diffstat (limited to 'src/commands/optional')
| -rw-r--r-- | src/commands/optional/teawiespam.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/optional/teawiespam.rs b/src/commands/optional/teawiespam.rs index 2111308..1ec237e 100644 --- a/src/commands/optional/teawiespam.rs +++ b/src/commands/optional/teawiespam.rs @@ -4,7 +4,7 @@ use color_eyre::eyre::Result; use log::debug; /// teawie will spam you. -#[poise::command(slash_command, prefix_command)] +#[poise::command(slash_command)] pub async fn teawiespam(ctx: Context<'_>) -> Result<()> { let gid = ctx.guild_id().unwrap_or_default(); let settings = ctx.data().storage.get_guild_settings(&gid).await?; |
