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()) );