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

Diff of /trunk/src/commands/moderation/SoftBanCommand.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 194 by rakin, Mon Jul 29 17:28:58 2024 UTC
# Line 9  import History from '../../automod/Histo Line 9  import History from '../../automod/Histo
9  import Punishment from '../../models/Punishment';  import Punishment from '../../models/Punishment';
10  import PunishmentType from '../../types/PunishmentType';  import PunishmentType from '../../types/PunishmentType';
11  import { fetchEmojiStr } from '../../utils/Emoji';  import { fetchEmojiStr } from '../../utils/Emoji';
12  import { shouldNotModerate } from '../../utils/util';  import { hasPermission, shouldNotModerate } from '../../utils/util';
13    
14  export default class SoftBanCommand extends BaseCommand {  export default class SoftBanCommand extends BaseCommand {
15      supportsInteractions: boolean = true;      supportsInteractions: boolean = true;
# Line 128  export default class SoftBanCommand exte Line 128  export default class SoftBanCommand exte
128              try {              try {
129                  const member = await msg.guild!.members.fetch(user.id);                  const member = await msg.guild!.members.fetch(user.id);
130    
131                    if (member && !(await hasPermission(client, member, msg, null, "You don't have permission to softban this user."))) {
132                        return;
133                    }
134    
135                  if (member && shouldNotModerate(client, member)) {                  if (member && shouldNotModerate(client, member)) {
136                      await msg.reply({                      await msg.reply({
137                          embeds: [                          embeds: [

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26