fix: Fix gorb file path

imgbot
Kieran 2023-01-06 11:52:38 +00:00
parent 446a573e09
commit 9242e1a0a8
1 changed files with 6 additions and 6 deletions

View File

@ -27,27 +27,27 @@ module.exports = {
const string = interaction.options.getString('type');
if (string == null) {
await interaction.reply({ files: ['./images/gorb.jpg'] });
await interaction.reply({ files: ['./src/images/gorb.jpg'] });
}
if (string == 'cs') {
await interaction.reply({ files: ['./images/gorbcs.jpg'] });
await interaction.reply({ files: ['./src/images/gorbcs.jpg'] });
}
if (string == 'party') {
await interaction.reply({ files: ['./images/gorbcelebration.PNG'] });
await interaction.reply({ files: ['./src/images/gorbcelebration.PNG'] });
}
if (string == 'christmas') {
await interaction.reply({ files: ['./images/gorbchristmas.PNG'] });
await interaction.reply({ files: ['./src/images/gorbchristmas.PNG'] });
}
if (string == 'storm') {
await interaction.reply({ files: ['./images/gorbstorm.PNG'] });
await interaction.reply({ files: ['./src/images/gorbstorm.PNG'] });
}
if (string == 'large') {
await interaction.reply({ files: ['./images/gorblarge.png'] });
await interaction.reply({ files: ['./src/images/gorblarge.png'] });
}
},
};