From 9d5a02fc32730563533d761eef9ce153fd985d33 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Fri, 12 Sep 2014 15:37:50 -0700 Subject: [PATCH] Added skip_song placeholder method --- mumbledj/mumbledj.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mumbledj/mumbledj.py b/mumbledj/mumbledj.py index 8444e43..17aed23 100644 --- a/mumbledj/mumbledj.py +++ b/mumbledj/mumbledj.py @@ -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):