Skip to content

Commit

Permalink
Merge branch 'master' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
IRONM00N committed Dec 2, 2024
2 parents 98f79f2 + b917aa8 commit 840d113
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ecosystem.config.cjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
/* eslint-disable no-undef, @typescript-eslint/no-require-imports */
let user, host;

try {
({ user, host } = require('./ecosystem-info.json'));
} catch (e) {
} catch {
user = 'ironmoon';
host = 'localhost';
}
Expand Down
3 changes: 2 additions & 1 deletion src/commands/moderation/kick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export default class KickCommand extends BotCommand {
],
slash: true,
clientPermissions: ['KickMembers'],
userPermissions: ['KickMembers']
userPermissions: ['KickMembers'],
channel: 'guild'
});
}

Expand Down

0 comments on commit 840d113

Please sign in to comment.