Skip to content

Commit

Permalink
@gosling and horatio mod
Browse files Browse the repository at this point in the history
  • Loading branch information
anarchivist committed Dec 7, 2011
1 parent c477c5a commit ba278ca
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions plugins/Translators/plugin.py
Expand Up @@ -321,11 +321,11 @@ def horatio(self, irc, msg, args):
if len(words) == 1:
words = (' '.join(words)).split()
r1 = u'( ಠ_ಠ) ' + choice(intros) + u' ' + words[0]
irc.reply(r1.encode('utf-8', 'ignore'))
irc.reply(u'( ಠ_ಠ)>--■-■'.encode('utf-8','ignore'))
irc.reply(r1.encode('utf-8', 'ignore'), prefixNick=False)
irc.reply(u'( ಠ_ಠ)>--■-■'.encode('utf-8','ignore'), prefixNick=False)
r2 = u'(-■_■) ' + ' '.join(words[1:])
irc.reply(r2.encode('utf-8', 'ignore'))
irc.reply('YEAAAAAAAAAAAAAAAAAAAAAAH')
irc.reply(r2.encode('utf-8', 'ignore'), prefixNick=False)
irc.reply('YEAAAAAAAAAAAAAAAAAAAAAAH', prefixNick=False)

def pairtree(self, irc, msg, args, id):
"""<id>
Expand Down Expand Up @@ -368,6 +368,9 @@ def insert_randoms(text):
def platform(self, irc, msg, args):
irc.reply("HOW MANY %s CAN I PUT YOU DOWN FOR?" % (' '.join(args).upper()), prefixNick=False)
platforms = platform

def gosling(self, irc, msg, args):
irc.reply("Hey girl. %s") % (' '.join(args), prefixNick=False)

Class = Translators

Expand Down

0 comments on commit ba278ca

Please sign in to comment.