diff options
| author | Austin Hellyer <[email protected]> | 2016-12-14 12:21:00 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-14 12:21:00 -0800 |
| commit | 7b4b1544603a70dd634b51593ea5173b4515889a (patch) | |
| tree | 8fb43e17127abcb67d444a1b1468542c5b2c6537 /src/ext/framework | |
| parent | Framework blocks, disabled commands, improvements (diff) | |
| download | serenity-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.rs | 2 |
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(()); } } |