prevent run automine on start if automine disabled

This commit is contained in:
Your Name 2025-01-04 12:29:35 +03:00
parent 07c460131c
commit e930ce6994

View file

@ -193,7 +193,8 @@ async def main():
else:
await autobioebbing.eb(client, c, conn, None, None, get_id, my_id, message_q)
asyncio.ensure_future(avocmine.automine_avocado_task(client))
if config.automine:
asyncio.ensure_future(avocmine.automine_avocado_task(client))
await stat.biomod(client, c)