Skip to content

Commit

Permalink
(hopefully) fix "cannot find symbol" errors
Browse files Browse the repository at this point in the history
  • Loading branch information
uncreativeCultist committed Jul 10, 2024
1 parent 7efdbad commit 323ff63
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions src/main/java/com/jagrosh/jmusicbot/audio/AudioHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,6 @@ public Message getNowPlaying(JDA jda, boolean includeProgress)
+ FormatUtil.volumeIcon(audioPlayer.getVolume()));
}
else
eb.setDescription(" `[" + FormatUtil.formatTime(track.getDuration()) + "]` "
+ FormatUtil.volumeIcon(audioPlayer.getVolume()));

return mb.setEmbeds(eb.build()).build();
}
else return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,6 @@ public void onTrackUpdate(AudioTrack track)
else
bot.resetGame();
}
// update channel topic if applicable
updateTopic(guildId, handler, false);

if(bot.getConfig().getAutoNowPlaying())
sendNowPlayingMessageForNewTrack(guildId);
}


Expand Down

0 comments on commit 323ff63

Please sign in to comment.