From 3751d017565d051aade722b4614106cb6baefb0e Mon Sep 17 00:00:00 2001 From: Keanu Date: Sun, 31 Oct 2021 18:51:24 +0100 Subject: [PATCH] Fix eco not functioning whatsoever. --- src/commands/fun/modules/eco-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/fun/modules/eco-utils.ts b/src/commands/fun/modules/eco-utils.ts index 48f806e..dba9251 100644 --- a/src/commands/fun/modules/eco-utils.ts +++ b/src/commands/fun/modules/eco-utils.ts @@ -76,6 +76,6 @@ export function isAuthorized(guild: Guild | null, channel: TextBasedChannels): b channel.send("Sorry, this command can only be used in <#669464416420364288>."); return false; } else { - return false; + return true; } }