From 9cbd196bc95f0dff2b9eb0fc06f6543483e77ca6 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Tue, 9 Nov 2021 18:18:04 +0000 Subject: [PATCH] Merge branch 'fp-attempt-9001' of https://github.com/discordeno/discordeno into fp-attempt-9001 --- src/bot.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index e1303a44e..1e1aaccd1 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -652,8 +652,8 @@ export interface Helpers { leaveThread: typeof helpers.leaveThread; lockThread: typeof helpers.lockThread; removeThreadMember: typeof helpers.removeThreadMember; - startPrivateThread: typeof helpers.startPrivateThread; - startThread: typeof helpers.startThread; + startThreadWithoutMessage: typeof helpers.startThreadWithoutMessage; + startThreadWithMessage: typeof helpers.startThreadWithMessage; unarchiveThread: typeof helpers.unarchiveThread; unlockThread: typeof helpers.unlockThread; suppressEmbeds: typeof helpers.suppressEmbeds; @@ -827,8 +827,8 @@ export function createBaseHelpers(options: Partial) { leaveThread: options.leaveThread || helpers.leaveThread, lockThread: options.lockThread || helpers.lockThread, removeThreadMember: options.removeThreadMember || helpers.removeThreadMember, - startPrivateThread: options.startPrivateThread || helpers.startPrivateThread, - startThread: options.startThread || helpers.startThread, + startThreadWithoutMessage: options.startThreadWithoutMessage || helpers.startThreadWithoutMessage, + startThreadWithMessage: options.startThreadWithMessage || helpers.startThreadWithMessage, unarchiveThread: options.unarchiveThread || helpers.unarchiveThread, unlockThread: options.unlockThread || helpers.unlockThread, suppressEmbeds: options.suppressEmbeds || helpers.suppressEmbeds,