From 9d9255770589e763bac92295f59102f893ccf573 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Fri, 7 Jun 2019 16:42:25 -0500 Subject: [PATCH] Fixed bug in ad posting --- chat/ad-manager.ts | 6 +++--- chat/conversations.ts | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/chat/ad-manager.ts b/chat/ad-manager.ts index d75b7c8..d6a9965 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 = 3 * 60 * 1000; - static readonly POST_VARIANCE = 10 * 60 * 1000; - static readonly POST_DELAY = 2 * 60 * 1000; + static readonly START_VARIANCE = 2 * 60 * 1000; + static readonly POST_VARIANCE = 7 * 60 * 1000; + static readonly POST_DELAY = 1 * 60 * 1000; private conversation: Conversation; diff --git a/chat/conversations.ts b/chat/conversations.ts index 0da8fe0..a47686a 100644 --- a/chat/conversations.ts +++ b/chat/conversations.ts @@ -343,6 +343,8 @@ class ChannelConversation extends Conversation implements Interfaces.ChannelConv if (text.length < 1) return; + core.connection.send('LRP', {channel: this.channel.id, message: text}); + await this.addMessage( createMessage(MessageType.Ad, core.characters.ownCharacter, text, new Date()) );