summaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 056aec6..80581d5 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -87,7 +87,7 @@ fn register_db(f: StandardFramework) -> StandardFramework {
)
.command("delmeme", |c| c
.guild_only(true)
- .desc("not currently working")
+ .desc("delete a meme by name (exact match only)")
.cmd(delmeme)
)
.command("renamememe", |c| c
@@ -96,6 +96,14 @@ fn register_db(f: StandardFramework) -> StandardFramework {
.help_available(false)
.cmd(renamememe)
)
+ .command("wat", |c| c
+ .known_as("what")
+ .known_as("last")
+ .known_as("lastmeme")
+ .guild_only(true)
+ .desc("check info for last meme")
+ .cmd(wat)
+ )
}
#[cfg(not(feature = "diesel"))]