aboutsummaryrefslogtreecommitdiff
path: root/src/ext/framework
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-12-14 12:21:00 -0800
committerAustin Hellyer <[email protected]>2016-12-14 12:21:00 -0800
commit7b4b1544603a70dd634b51593ea5173b4515889a (patch)
tree8fb43e17127abcb67d444a1b1468542c5b2c6537 /src/ext/framework
parentFramework blocks, disabled commands, improvements (diff)
downloadserenity-7b4b1544603a70dd634b51593ea5173b4515889a.tar.xz
serenity-7b4b1544603a70dd634b51593ea5173b4515889a.zip
Fix plain help command usage output
Diffstat (limited to 'src/ext/framework')
-rw-r--r--src/ext/framework/help_commands.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ext/framework/help_commands.rs b/src/ext/framework/help_commands.rs
index 385afe4..6ad9735 100644
--- a/src/ext/framework/help_commands.rs
+++ b/src/ext/framework/help_commands.rs
@@ -190,6 +190,8 @@ pub fn plain(ctx: &Context,
});
result.push_str("\n");
+ let _ = ctx.say(&result);
+
return Ok(());
}
}