This commit is contained in:
parent
4ed5beb42a
commit
1acedfbd3d
10 changed files with 696 additions and 634 deletions
|
@ -2,6 +2,7 @@ import { Message } from "discord.js";
|
|||
import SettingsHelper from "../../helpers/SettingsHelper";
|
||||
import VerificationCheck from "./MessageCreate/VerificationCheck";
|
||||
import CacheHelper from "../../helpers/CacheHelper";
|
||||
import LinkOnlyMode from "./MessageCreate/LinkOnlyMode";
|
||||
|
||||
export default async function MessageCreate(message: Message) {
|
||||
if (!message.guild) return;
|
||||
|
@ -9,6 +10,8 @@ export default async function MessageCreate(message: Message) {
|
|||
|
||||
await CacheHelper.UpdateServerCache(message.guild);
|
||||
|
||||
await LinkOnlyMode(message);
|
||||
|
||||
const isVerificationEnabled = await SettingsHelper.GetSetting("verification.enabled", message.guild.id);
|
||||
|
||||
if (isVerificationEnabled && isVerificationEnabled.toLocaleLowerCase() == "true") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue