aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2019-03-29 15:20:27 -0400
committerNathan Perry <avaglir@gmail.com>2019-03-29 15:20:27 -0400
commit5f63ea4a1991159348c2e7d7f519c3ac6cd46454 (patch)
tree4af4ba0814287dd4ce6e7144c614f7def495c162 /src/commands/mod.rs
parent2685e6028dd775bcd618a3d8d2b22e32730454a3 (diff)
switch over to pest
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 1582977..6596a32 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -60,11 +60,6 @@ pub fn register_commands(f: StandardFramework) -> StandardFramework {
.desc("simulate rolling dice")
.guild_only(true)
.exec(roll::roll))
- .command("debug_expr", |c| c
- .desc("debug calculator expression")
- .owners_only(true)
- .exec(roll::debug_expr)
- )
.unrecognised_command(|ctx, msg, unrec| {
let url = match msg.content.split_whitespace().skip(1).next() {
Some(x) if x.starts_with("http") => x,