diff --git a/chat/ad-manager.ts b/chat/ad-manager.ts index d6a9965..db73f67 100644 --- a/chat/ad-manager.ts +++ b/chat/ad-manager.ts @@ -2,9 +2,9 @@ import { Conversation } from './interfaces'; export class AdManager { static readonly POSTING_PERIOD = 3 * 60 * 60 * 1000; - static readonly START_VARIANCE = 2 * 60 * 1000; - static readonly POST_VARIANCE = 7 * 60 * 1000; - static readonly POST_DELAY = 1 * 60 * 1000; + static readonly START_VARIANCE = 3 * 60 * 1000; + static readonly POST_VARIANCE = 8 * 60 * 1000; + static readonly POST_DELAY = 1.5 * 60 * 1000; private conversation: Conversation;