feat: update configuration and queries for enhanced search capabilities and localization support

This commit is contained in:
2025-11-04 21:43:06 +01:00
parent 9d5a9b438d
commit 03d94a0441
4 changed files with 300 additions and 6 deletions

View File

@@ -236,10 +236,9 @@ export class Workers {
private async applyThrottle(throttle: AdaptiveThrottler, min: number, max: number): Promise<void> {
const multiplier = throttle.getDelayMultiplier()
const riskMultiplier = this.bot.getRiskDelayMultiplier()
await this.bot.utils.waitRandom(
Math.floor(min * multiplier * riskMultiplier),
Math.floor(max * multiplier * riskMultiplier)
Math.floor(min * multiplier),
Math.floor(max * multiplier)
)
}