From de3b923c5be7280f6bd7749e25ec49fdc7bd62de Mon Sep 17 00:00:00 2001 From: minicx Date: Mon, 12 Dec 2022 20:18:05 +0300 Subject: [PATCH] uncomment func --- index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.ts b/index.ts index f208d96..69f33e3 100644 --- a/index.ts +++ b/index.ts @@ -371,8 +371,8 @@ const farm: () => Promise = async () => { } try{ - // await doSitesTasks(client,worker,hero,botEntity,tasksSelector); - // await doChatsTasks(client, worker, hero, botEntity, tasksSelector); + await doSitesTasks(client,worker,hero,botEntity,tasksSelector); + await doChatsTasks(client, worker, hero, botEntity, tasksSelector); try{ await doBotTasks(client, worker, hero, botEntity, tasksSelector); } catch (err){ @@ -530,4 +530,4 @@ process.on('SIGINT', function () { process.exit(); }) -}); \ No newline at end of file +});