diff --git a/src/commands/mod/ban/ban.ts b/src/commands/mod/ban/ban.ts index 1750802..652f690 100644 --- a/src/commands/mod/ban/ban.ts +++ b/src/commands/mod/ban/ban.ts @@ -23,7 +23,10 @@ import { EmbedBuilder } from 'discord.js'; import IDs from '#utils/ids'; import { addBan, checkBan } from '#utils/database/moderation/ban'; import { addEmptyUser, updateUser } from '#utils/database/dbExistingUser'; -import { checkTempBan, removeTempBan } from '#utils/database/moderation/tempBan'; +import { + checkTempBan, + removeTempBan, +} from '#utils/database/moderation/tempBan'; export class BanCommand extends Command { public constructor(context: Command.LoaderContext, options: Command.Options) { diff --git a/src/commands/mod/ban/unban.ts b/src/commands/mod/ban/unban.ts index 8a4ba32..f6bd2cd 100644 --- a/src/commands/mod/ban/unban.ts +++ b/src/commands/mod/ban/unban.ts @@ -29,7 +29,10 @@ import type { import { EmbedBuilder } from 'discord.js'; import IDs from '#utils/ids'; import { removeBan, checkBan, addBan } from '#utils/database/moderation/ban'; -import { checkTempBan, removeTempBan } from '#utils/database/moderation/tempBan'; +import { + checkTempBan, + removeTempBan, +} from '#utils/database/moderation/tempBan'; import { addEmptyUser, addExistingUser } from '#utils/database/dbExistingUser'; export class UnbanCommand extends Command { diff --git a/src/commands/mod/vcMute.ts b/src/commands/mod/vcMute.ts index b60c7cc..a4e2fbc 100644 --- a/src/commands/mod/vcMute.ts +++ b/src/commands/mod/vcMute.ts @@ -19,7 +19,11 @@ import { Args, Command, RegisterBehavior } from '@sapphire/framework'; import type { GuildMember, Message } from 'discord.js'; -import { addMute, removeMute, checkActive } from '#utils/database/moderation/vcMute'; +import { + addMute, + removeMute, + checkActive, +} from '#utils/database/moderation/vcMute'; import { addExistingUser } from '#utils/database/dbExistingUser'; export class VCMuteCommand extends Command { diff --git a/src/commands/mod/warning/deleteWarning.ts b/src/commands/mod/warning/deleteWarning.ts index 2d80bbd..ad3638b 100644 --- a/src/commands/mod/warning/deleteWarning.ts +++ b/src/commands/mod/warning/deleteWarning.ts @@ -21,7 +21,10 @@ import { Args, Command, RegisterBehavior } from '@sapphire/framework'; import { EmbedBuilder, TextChannel } from 'discord.js'; import type { Message, Guild, User } from 'discord.js'; import IDs from '#utils/ids'; -import { deleteWarning, fetchWarning } from '#utils/database/moderation/warnings'; +import { + deleteWarning, + fetchWarning, +} from '#utils/database/moderation/warnings'; import { checkStaff } from '#utils/checker'; export class DeleteWarningCommand extends Command { diff --git a/src/listeners/modMail.ts b/src/listeners/modMail.ts index e48817f..68085fa 100644 --- a/src/listeners/modMail.ts +++ b/src/listeners/modMail.ts @@ -22,7 +22,10 @@ import { ChannelType } from 'discord.js'; import type { GuildChannel, EmbedBuilder } from 'discord.js'; import { setTimeout } from 'timers/promises'; import IDs from '#utils/ids'; -import { checkActive, getRestrictions } from '#utils/database/moderation/restriction'; +import { + checkActive, + getRestrictions, +} from '#utils/database/moderation/restriction'; import { findNotes } from '#utils/database/moderation/sus'; import { createRestrictLogEmbed, diff --git a/src/listeners/rolesJoinServer.ts b/src/listeners/rolesJoinServer.ts index 495e25e..b0b65bf 100644 --- a/src/listeners/rolesJoinServer.ts +++ b/src/listeners/rolesJoinServer.ts @@ -28,7 +28,10 @@ import type { import { ChannelType } from 'discord.js'; import { fetchRoles, getLeaveRoles } from '#utils/database/dbExistingUser'; import { blockTime } from '#utils/database/verification'; -import { checkActive, getSection } from '#utils/database/moderation/restriction'; +import { + checkActive, + getSection, +} from '#utils/database/moderation/restriction'; import { blockedRoles, blockedRolesAfterRestricted } from '#utils/blockedRoles'; import IDs from '#utils/ids'; diff --git a/src/scheduled-tasks/tempBan.ts b/src/scheduled-tasks/tempBan.ts index 1d21a1d..a230bdf 100644 --- a/src/scheduled-tasks/tempBan.ts +++ b/src/scheduled-tasks/tempBan.ts @@ -21,7 +21,10 @@ import { ScheduledTask } from '@sapphire/plugin-scheduled-tasks'; import IDs from '#utils/ids'; import { EmbedBuilder } from 'discord.js'; import { checkBan } from '#utils/database/moderation/ban'; -import { checkTempBan, removeTempBan } from '#utils/database/moderation/tempBan'; +import { + checkTempBan, + removeTempBan, +} from '#utils/database/moderation/tempBan'; export class TempBan extends ScheduledTask { public constructor(