This commit is contained in:
2024-05-05 15:55:05 +02:00
parent e6ec2915b8
commit a509647ed0

View File

@@ -170,11 +170,11 @@ impl BotsManager {
BotsManager::check().await; BotsManager::check().await;
} }
if tick_number % 60 == 0 { if tick_number % 180 == 0 {
BotsManager::check_pending_updates().await; BotsManager::check_pending_updates().await;
} }
tick_number = (tick_number + 1) % 60; tick_number = (tick_number + 1) % 180;
} }
} }
} }