diff options
Diffstat (limited to 'src')
| -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 fa87393..064486d 100644 --- a/src/commands/meme.rs +++ b/src/commands/meme.rs @@ -77,7 +77,7 @@ enum AudioPlayback { fn _meme(ctx: &mut Context, msg: &Message, args: Args, audio_playback: AudioPlayback) -> Result<()> { if args.len() == 0 || audio_playback != AudioPlayback::Optional { - return rand_meme(ctx, msg, AudioPlayback::Required); + return rand_meme(ctx, msg, audio_playback); } let search = args.full(); |
