Include msg term in final message

This commit is contained in:
dsc 2022-07-21 16:36:45 +02:00
parent 0fc93a0192
commit 4801d17520
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ class Task:
bg = Image.open('bg-pools.jpg')
term_max = 60
term_x_start = 100
if MODE == "2600nl":
elif MODE == "2600nl":
bg = Image.open('bg-2600nl.jpg')
term_max = 52
term_x_start = 230
@ -237,7 +237,7 @@ async def main():
_lower_author_task_count(task.author)
bot.send("PRIVMSG", target=task.channel, message=f"{url} ({task.author})")
bot.send("PRIVMSG", target=task.channel, message=f"{url} \"{task.term}\" ({task.author}) ")
await asyncio.sleep(10)
loop = asyncio.get_event_loop()