From 6da3d59585ac40dd1150950340023be8e0497500 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sat, 3 Sep 2022 11:47:11 -0700 Subject: [PATCH] Minor --- chat/ads/ad-manager.ts | 7 ++++++- electron/main.ts | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/chat/ads/ad-manager.ts b/chat/ads/ad-manager.ts index f6c2611..dd8e469 100644 --- a/chat/ads/ad-manager.ts +++ b/chat/ads/ad-manager.ts @@ -165,7 +165,12 @@ export class AdManager { start(): void { const chanConv = (this.conversation); - const initialWait = Math.max(Math.random() * AdManager.START_VARIANCE, (chanConv.nextAd - Date.now()) * 1.1); + + const initialWait = Math.max( + Math.random() * AdManager.START_VARIANCE, + (chanConv.nextAd - Date.now()) * 1.1, + (this.conversation.settings.adSettings.lastAdTimestamp || 0) + (core.connection.vars.lfrp_flood * 1000) + ); this.adIndex = 0; this.active = true; diff --git a/electron/main.ts b/electron/main.ts index 8d203f2..d6b9002 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -131,7 +131,7 @@ async function toggleDictionary(lang: string): Promise { newLangs = activeLangs; } - settings.spellcheckLang = newLangs; + settings.spellcheckLang = _.uniq(newLangs); setGeneralSettings(settings);