blob: 8177fde5c765955b3e95f9dbce73567bc6824f3f (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from src import EventManager, IRCLine, ModuleManager, utils
class Module(ModuleManager.BaseModule):
@utils.hook("raw.send.privmsg", priority=EventManager.PRIORITY_MONITOR)
@utils.hook("raw.send.notice", priority=EventManager.PRIORITY_MONITOR)
def send_message(self, event):
our_hostmask = utils.irc.seperate_hostmask(event["server"].hostmask())
echo = IRCLine.ParsedLine(event["command"], event["args"],
source=our_hostmask, tags=event["tags"])
echo.id = event["line"].id
self.events.on("raw.received").call(line=echo, server=event["server"])
|