Alias module: detect alias only if line begins with !

This commit is contained in:
Némunaire 2012-12-24 15:47:17 +01:00
parent 0daef1e810
commit 1810055ccc

View File

@ -118,9 +118,9 @@ def treat_variables(res):
return True
def treat_alias(msg, hooks_cache):
if msg.cmd == "PRIVMSG" and (len(msg.cmds[0]) > 0 and
msg.cmds[0][1:] in DATAS.getNode("aliases").index and
msg.cmds[0][1:] not in hooks_cache("cmd_hook")):
if msg.cmd == "PRIVMSG" and (len(msg.cmds[0]) > 0 and msg.cmds[0][0] == "!"
and msg.cmds[0][1:] in DATAS.getNode("aliases").index
and msg.cmds[0][1:] not in hooks_cache("cmd_hook")):
msg.content = msg.content.replace(msg.cmds[0],
DATAS.getNode("aliases").index[msg.cmds[0][1:]]["origin"], 1)