From 500693cbd03d90d813cad0d3c1afb6c45f744d6e Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Fri, 7 Jun 2019 16:43:22 -0500 Subject: [PATCH] Fixed bug in ad posting --- chat/ad-manager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;