diff options
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; }) }) } |
