diff options
| author | Nathan Perry <avaglir@gmail.com> | 2019-03-09 17:09:57 -0500 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2019-03-09 17:09:57 -0500 |
| commit | a541cc28c435f039b977087cf7d07648a160633b (patch) | |
| tree | 57f4148dcd789e865dbf8d81daf07458c88fc07e /src/commands/mod.rs | |
| parent | a0aa6c6310b046d27c71cef23dcf6e6811cc11de (diff) | |
add silentmeme command
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 4619a5a..1582977 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -94,6 +94,11 @@ fn register_db(f: StandardFramework) -> StandardFramework { .help_available(false) .cmd(audio_meme) ) + .command("silentmeme", |c| c + .guild_only(true) + .help_available(false) + .cmd(silent_meme) + ) .command("addmeme", |c| c .guild_only(true) .desc("first argument is title, everything after is text. one attached image is included if present.") |
