WIP #32
This commit is contained in:
parent
2d893dbda2
commit
d913af4378
3 changed files with 20 additions and 2 deletions
|
@ -6,7 +6,7 @@ stages:
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
GL_TOKEN: $GL_TOKEN
|
GL_TOKEN: $GL_TOKEN
|
||||||
VERSION: '0.2.6'
|
VERSION: '0.2.7'
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
|
|
|
@ -53,11 +53,29 @@ class Texte(commands.Cog):
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_ready(self):
|
async def on_ready(self):
|
||||||
|
for channel in bot.get_all_channels():
|
||||||
|
if channel.name == text_channel:
|
||||||
|
current_chan = channel
|
||||||
|
if nickname:
|
||||||
|
await bot.user.edit(nick=nickname)
|
||||||
|
await current_chan.send('Le troll est dans la place !')
|
||||||
|
|
||||||
self.kron.start()
|
self.kron.start()
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_message(self, message):
|
async def on_message(self, message):
|
||||||
if message.author == self.bot.user or message.content.startswith('!'):
|
if message.author == self.bot.user or message.content.startswith('!'):
|
||||||
|
if message.content.startswith('!'):
|
||||||
|
for channel in self.bot.get_all_channels():
|
||||||
|
if channel.name == self.text_chan:
|
||||||
|
current_chan = channel
|
||||||
|
async for msg in current_chan.history(limit=1):
|
||||||
|
last_message = msg
|
||||||
|
ctx = await self.bot.get_context(last_message)
|
||||||
|
ctx.message.content = ""
|
||||||
|
cmd_name = message.content.split()[0].replace('!','')
|
||||||
|
cmd = self.bot.get_command(cmd_name)
|
||||||
|
await cmd.invoke(ctx)
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
if self.bot.user in message.mentions \
|
if self.bot.user in message.mentions \
|
||||||
|
|
|
@ -61,6 +61,6 @@ setup(
|
||||||
test_suite='tests',
|
test_suite='tests',
|
||||||
tests_require=test_requirements,
|
tests_require=test_requirements,
|
||||||
url='https://github.com/None/kabot',
|
url='https://github.com/None/kabot',
|
||||||
version='0.2.6',
|
version='0.2.7',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue