Added skip_song placeholder method

This commit is contained in:
Matthieu Grieger 2014-09-12 15:37:50 -07:00
parent 1ddd58ea80
commit 9d5a02fc32

View file

@ -42,6 +42,11 @@ class MumbleDJ:
# Sends a message to the chat when a new song starts playing.
def announce_new_song(self):
pass
# Skips the current song if more than 50% of the users in the channel vote to skip.
# The vote tracking will be handled elsewhere.
def skip_song(self):
pass
# Raises the volume by the increment decided by the user.
def raise_volume(self, increment):