Skip to content

Commit 661e88e

Browse files
committed
[the-overmind] Support super-dislikes with bottle emojis
Summary: Add the ability to detract more HP in a single go Test Plan: `pnpm test` Reviewers: #bitcoin_abc, Fabien Reviewed By: #bitcoin_abc, Fabien Subscribers: Fabien Differential Revision: https://reviews.bitcoinabc.org/D19482
1 parent e7021cb commit 661e88e

6 files changed

Lines changed: 2179 additions & 320 deletions

File tree

apps/the-overmind/index.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,16 @@ const startup = async () => {
148148
ctx.message.text || ctx.message.caption || '[Non-text message]';
149149
console.log(`DM from ${username} (${userId}): ${messageText}`);
150150
}
151-
await handleMessage(ctx, pool, monitoredGroupChatId);
151+
await handleMessage(
152+
ctx,
153+
pool,
154+
monitoredGroupChatId,
155+
master,
156+
chronik,
157+
bot,
158+
adminGroupChatId,
159+
wallet.address,
160+
);
152161
});
153162
console.info('Message handler registered for monitored group chat');
154163

0 commit comments

Comments
 (0)