浏览代码

Don't ping in reply() if it's private.

tags/v0.1^2
Ben Kurtovic 12 年前
父节点
当前提交
e133d5cfdc
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. +5
    -2
      earwigbot/irc/connection.py

+ 5
- 2
earwigbot/irc/connection.py 查看文件

@@ -142,8 +142,11 @@ class IRCConnection(object):

def reply(self, data, msg, hidelog=False):
"""Send a private message as a reply to a user on the server."""
msg = "\x02{0}\x0F: {1}".format(data.nick, msg)
self.say(data.chan, msg, hidelog)
if data.is_private:
self.say(data.chan, msg, hidelog)
else:
msg = "\x02{0}\x0F: {1}".format(data.nick, msg)
self.say(data.chan, msg, hidelog)

def action(self, target, msg, hidelog=False):
"""Send a private message to a target on the server as an action."""


正在加载...
取消
保存