From cae753ec567cfaf0b58b55c3bf850e182e7520ba Mon Sep 17 00:00:00 2001 From: HarHar Date: Thu, 24 Jan 2013 19:20:21 -0200 Subject: [PATCH] [irc] sp_seek --- syncplay/ircBot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/syncplay/ircBot.py b/syncplay/ircBot.py index cf20185..6b15e8b 100644 --- a/syncplay/ircBot.py +++ b/syncplay/ircBot.py @@ -64,6 +64,8 @@ class Bot(object): self.msg(self.channel, chr(2) + '<' + who + '>'+ chr(15) +' has paused (room ' + room + ')') def sp_fileplaying(self, who, filename, room): #for when syncplay knows what filename is being played self.msg(self.channel, chr(2) + '<' + who + '>'+ chr(15) +' is playing "' + filename + '" (room ' + room + ')') + def sp_seek(self, who, fromTime, toTime, room): + self.msg(self.channel, chr(2) + '<' + who + '>'+ chr(15) +' has jumped from ' + utils.formatTime(fromTime) + ' to ' + utils.formatTime(toTime) +' (room ' + room + ')') ################################## def sockSend(self, s):