From 333467738dcfcbe5df4ed68a0562fb81b7c2c3ac Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Thu, 21 Feb 2019 00:40:46 -0500 Subject: should_audio only depends on whether users are listening --- src/commands/meme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands/meme.rs') 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 { -- cgit v1.3.1