uncomment func

This commit is contained in:
minicx 2022-12-12 20:18:05 +03:00
parent 5726bf8571
commit 67579d6e18
1 changed files with 3 additions and 3 deletions

View File

@ -371,8 +371,8 @@ const farm: () => Promise<void> = 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();
})
});
});