Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-flip committed Mar 6, 2024
1 parent 89ab377 commit e2b6d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/nsfw.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports.run = async (interaction) => {
await interaction.deferReply();

// only guild command
if (!await interaction.inGuild()) return messageFail(interaction, 'This comamnd is for servers only.');
if (!await interaction.inGuild()) return messageFail(interaction, 'This command is for servers only.');
// check if user is teammember
if (!interaction.member.roles.cache.find(({ id }) => id === config.teamRole)) return messageFail(interaction, 'You don\'t have access to this command! òwó');
const subName = interaction.options.getSubcommand();
Expand Down

0 comments on commit e2b6d2c

Please sign in to comment.