From 14def7091342bbb9869bfc5d8e6a57508fc90eea Mon Sep 17 00:00:00 2001 From: ubq323 Date: Fri, 28 Feb 2025 00:14:38 +0000 Subject: implement more of the discord gateway protocol --- pylon.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'pylon.lua') diff --git a/pylon.lua b/pylon.lua index 12b3fdb..774395f 100644 --- a/pylon.lua +++ b/pylon.lua @@ -13,11 +13,11 @@ function BasePylon.check_config(self, vars) end function BasePylon.run(self) - local cq = cqueues.new() + self.cq = cqueues.new() self:_connect() - cq:wrap(self.recving, self) - cq:wrap(self.sending, self) - print(self.pylon_type, cq:loop()) + self.cq:wrap(self.recving, self) + self.cq:wrap(self.sending, self) + print(self.pylon_type, self.cq:loop()) end function BasePylon.post(self, dest_channel, message) @@ -26,7 +26,7 @@ end function BasePylon.log(self, ...) if self.debug then - print(self.pylon_type, self.name, ...) + print(self.name, ...) end end -- cgit v1.2.3