diff options
Diffstat (limited to 'src/commands')
| -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 d7b082b..a1b0671 100644 --- a/src/commands/meme.rs +++ b/src/commands/meme.rs @@ -251,7 +251,7 @@ pub fn renamememe(_: &mut Context, msg: &Message, _: Args) -> Result<()> { fn rand_meme(ctx: &Context, message: &Message, audio_only: bool) -> Result<()> { let conn = connection()?; - let should_audio = ctx.currently_playing() && ctx.users_listening()?; + let should_audio = ctx.users_listening()?; let mem = if audio_only { db_rand_audio_meme(&conn) } else { |
