diff options
| author | Nathan Perry <avaglir@gmail.com> | 2019-02-21 00:37:38 -0500 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2019-02-21 00:37:38 -0500 |
| commit | 7e7a797d839787f83c6fb27bbfce1b0787ff2aa0 (patch) | |
| tree | 9cafee124711bc468b4151cea49c6d92cbf94481 | |
| parent | 809439a83127a7dde63058a9a787948b4ca0f43b (diff) | |
fix meme command `audio_only` parameter
| -rw-r--r-- | src/commands/meme.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/meme.rs b/src/commands/meme.rs index f235913..d7b082b 100644 --- a/src/commands/meme.rs +++ b/src/commands/meme.rs @@ -51,7 +51,7 @@ fn update_meme(meme: &Meme) -> Result<()> { #[inline] pub fn meme(ctx: &mut Context, msg: &Message, args: Args) -> Result<()> { - _meme(ctx, msg, args, true) + _meme(ctx, msg, args, false) } #[inline] |
