From e7e2daa560af199bd005a8526ebcf7ff4441e3ea Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Sat, 30 Mar 2019 05:23:54 -0400 Subject: add rarememe command --- src/commands/mod.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/commands/mod.rs') diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 6596a32..74e6e3f 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -128,6 +128,12 @@ fn register_db(f: StandardFramework) -> StandardFramework { .desc("history of recent messages") .cmd(history) ) + .command("rarememe", |c| c + .known_as("rare_meme") + .guild_only(true) + .desc("deliver an underutilized meme") + .cmd(rare_meme) + ) } #[cfg(not(feature = "diesel"))] -- cgit v1.3.1