/[sudobot]/trunk/src/commands/moderation/MassBanCommand.ts
ViewVC logotype

Diff of /trunk/src/commands/moderation/MassBanCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 186 by rakin, Mon Jul 29 17:28:56 2024 UTC revision 205 by rakin, Mon Jul 29 17:29:00 2024 UTC
# Line 1  Line 1 
1  import { BanOptions, CommandInteraction, GuildMember, Interaction, Message, User } from 'discord.js';  import { BanOptions, CommandInteraction, GuildMember, Interaction, Message, User, Permissions } from 'discord.js';
2  import BaseCommand from '../../utils/structures/BaseCommand';  import BaseCommand from '../../utils/structures/BaseCommand';
3  import DiscordClient from '../../client/Client';  import DiscordClient from '../../client/Client';
4  import CommandOptions from '../../types/CommandOptions';  import CommandOptions from '../../types/CommandOptions';
# Line 9  import History from '../../automod/Histo Line 9  import History from '../../automod/Histo
9  import { fetchEmoji } from '../../utils/Emoji';  import { fetchEmoji } from '../../utils/Emoji';
10  import Punishment from '../../models/Punishment';  import Punishment from '../../models/Punishment';
11  import PunishmentType from '../../types/PunishmentType';  import PunishmentType from '../../types/PunishmentType';
12  import { shouldNotModerate } from '../../utils/util';  import { hasPermission, shouldNotModerate } from '../../utils/util';
13    
14  export default class MassBanCommand extends BaseCommand {  export default class MassBanCommand extends BaseCommand {
15      supportsInteractions: boolean = true;      supportsInteractions: boolean = true;
16        
17        permissions = [Permissions.FLAGS.BAN_MEMBERS];
18    
19      constructor() {      constructor() {
20          super('massban', 'moderation', []);          super('massban', 'moderation', []);
# Line 103  export default class MassBanCommand exte Line 105  export default class MassBanCommand exte
105                      try {                      try {
106                          const member = await msg.guild?.members.fetch(user.id);                          const member = await msg.guild?.members.fetch(user.id);
107    
108                            if (member && !(await hasPermission(client, member, msg, null, "You don't have permission to ban " + user.tag + ".")))
109                                break;
110                                
111                          if (member && shouldNotModerate(client, member)) {                          if (member && shouldNotModerate(client, member)) {
112                              await msg.reply({                              await msg.reply({
113                                  embeds: [                                  embeds: [

Legend:
Removed from v.186  
changed lines
  Added in v.205

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26