diff --git a/bot/src/stream/selfbot.ts b/bot/src/stream/selfbot.ts index 36bf98b..1b53749 100644 --- a/bot/src/stream/selfbot.ts +++ b/bot/src/stream/selfbot.ts @@ -110,10 +110,10 @@ export class SelfbotStreamer implements ScreenStreamer { // fingerprintable. throwIfAborted() after each pause unwinds into the // catch below if stop() lands mid-wait, so we never join/go-live on a // torn-down streamer. - await this.humanPause(900, 2200, signal); + await this.humanPause(2500, 4500, signal); signal.throwIfAborted(); await streamer.joinVoice(ctx.guildId, ctx.voiceChannelId); - await this.humanPause(2500, 5000, signal); + await this.humanPause(6000, 10000, signal); signal.throwIfAborted(); const [w, h] = this.config.vncResolution.split("x").map((n) => parseInt(n, 10));