build privmsg instead of using self.message
self.message will somewhat change behavior
This commit is contained in:
parent
2a21330e8b
commit
f67b269b1b
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ async def go(self, c, n, m):
|
||||||
)
|
)
|
||||||
if msg[-1] == "\x01" and msg[0] != "\x01":
|
if msg[-1] == "\x01" and msg[0] != "\x01":
|
||||||
msg = msg[:-1]
|
msg = msg[:-1]
|
||||||
await self.message(c, msg)
|
await self.send(build("PRIVMSG", [c, msg]))
|
||||||
|
|
||||||
|
|
||||||
async def init(self):
|
async def init(self):
|
||||||
|
|
Loading…
Reference in a new issue