From bfbb50dfc12b84db3443e54bc51434e6b775f069 Mon Sep 17 00:00:00 2001 From: supinic Date: Tue, 24 Sep 2024 19:38:18 +0200 Subject: [PATCH] `firstfollowedchannel` remove redundant `enabled` check --- commands/firstfollowedchannel/index.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/commands/firstfollowedchannel/index.js b/commands/firstfollowedchannel/index.js index a8bd1fd34..bcd7668c7 100644 --- a/commands/firstfollowedchannel/index.js +++ b/commands/firstfollowedchannel/index.js @@ -26,13 +26,6 @@ module.exports = { } }, Code: (async function firstFollowedChannel (context, target) { - if (!this.data.enabled) { - return { - success: false, - reply: "This command is missing configuration!" - }; - } - const platform = sb.Platform.get("twitch"); const name = sb.User.normalizeUsername(target ?? context.user.Name);