Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Mar 19, 2013
1 parent fdb436c commit 1b21dc6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions plugins/Translators/plugin.py
Expand Up @@ -432,6 +432,15 @@ def baconator(self, irc, msg, args):
pass
irc.reply(' '.join(words))

def oprah(self, irc, msg, args):
"""Give stuff away like Oprah"""
if len(args) == 0:
irc.reply("No favorite things to give away today!")
return
thing = ' '.join(args)
irc.reply('YOU get %s! And YOU get %s! And YOU get %s! EVERYONE GETS %s!' % (thing, thing, thing, thing.upper()), prefixNick=False)


Class = Translators


0 comments on commit 1b21dc6

Please sign in to comment.