diff options
| author | Nathan Perry <np@nathanperry.dev> | 2024-05-08 14:15:42 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2024-05-08 14:16:01 -0400 |
| commit | 47817c4166937af24041a93e56ad9f841bf1e8f1 (patch) | |
| tree | a8ec0a674a5a4e5046e1bc92c1c317a48b5e4815 /src/commands/mod.rs | |
| parent | ffba60b278162707bc4eb004c3bfb6b2e9595213 (diff) | |
fixups: memes working
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs index c8a7014..3f69a3b 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -21,7 +21,6 @@ pub(crate) mod today; mod help; #[group] -#[prefix = ""] #[only_in(guild)] #[commands(roll, today)] struct General; @@ -52,7 +51,7 @@ pub fn register_commands(f: StandardFramework) -> StandardFramework { }, }; - let _ = _play(ctx, msg, &url); + let _ = _play(ctx, msg, url).await; }) }) } |
