Skip to content

Commit

Permalink
HOTFIX: Under Dev commands not working
Browse files Browse the repository at this point in the history
  • Loading branch information
MotorTruck1221 committed Nov 26, 2022
1 parent 01d068f commit fe7ca25
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions commands/invite.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
let embed = new EmbedBuilder();
embed.setTitle('Invite');
//embed.setDescription('This command is currently under development');
embed.addFieldset({
embed.addFields({
name: 'Under Development',
value: 'This command is currently under development',
inline: false
Expand All @@ -27,4 +27,4 @@ module.exports = {
embed.setColor('#ff0000');
await interaction.reply({ embeds: [embed], ephemeral: true});
},
};
};
4 changes: 2 additions & 2 deletions commands/limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
let embed = new EmbedBuilder();
embed.setTitle('Limit');
//embed.setDescription('This command is currently under development');
embed.addFieldset({
embed.addFields({
name: 'Under Development',
value: 'This command is currently under development',
inline: false
Expand All @@ -27,4 +27,4 @@ module.exports = {
embed.setColor('#ff0000');
await interaction.reply({ embeds: [embed], ephemeral: true});
},
};
};
4 changes: 2 additions & 2 deletions commands/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
let embed = new EmbedBuilder();
embed.setTitle('List');
//embed.setDescription('This command is currently under development');
embed.addFieldset({
embed.addFields({
name: 'Under Development',
value: 'This command is currently under development',
inline: false
Expand All @@ -27,4 +27,4 @@ module.exports = {
embed.setColor('#ff0000');
await interaction.reply({ embeds: [embed], ephemeral: true});
},
};
};
4 changes: 2 additions & 2 deletions commands/remove.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
let embed = new EmbedBuilder();
embed.setTitle('Remove');
//embed.setDescription('This command is currently under development');
embed.addFieldset({
embed.addFields({
name: 'Under Development',
value: 'This command is currently under development',
inline: false
Expand All @@ -27,4 +27,4 @@ module.exports = {
embed.setColor('#ff0000');
await interaction.reply({ embeds: [embed], ephemeral: true});
},
};
};
4 changes: 2 additions & 2 deletions commands/reset-user.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
let embed = new EmbedBuilder();
embed.setTitle('Reset User');
//embed.setDescription('This command is currently under development');
embed.addFieldset({
embed.addFields({
name: 'Under Development',
value: 'This command is currently under development',
inline: false
Expand All @@ -27,4 +27,4 @@ module.exports = {
embed.setColor('#ff0000');
await interaction.reply({ embeds: [embed], ephemeral: true});
},
};
};
4 changes: 2 additions & 2 deletions commands/reset.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
let embed = new EmbedBuilder();
embed.setTitle('Reset');
//embed.setDescription('This command is currently under development');
embed.addFieldset({
embed.addFields({
name: 'Under Development',
value: 'This command is currently under development',
inline: false
Expand All @@ -27,4 +27,4 @@ module.exports = {
embed.setColor('#ff0000');
await interaction.reply({ embeds: [embed], ephemeral: true});
},
};
};
4 changes: 2 additions & 2 deletions commands/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
let embed = new EmbedBuilder();
embed.setTitle('Remove');
//embed.setDescription('This command is currently under development');
embed.addFieldset({
embed.addFields({
name: 'Under Development',
value: 'This command is currently under development',
inline: false
Expand All @@ -27,4 +27,4 @@ module.exports = {
embed.setColor('#ff0000');
await interaction.reply({ embeds: [embed], ephemeral: true});
},
};
};

0 comments on commit fe7ca25

Please sign in to comment.