Skip to content

Commit

Permalink
fix: Fix gorb file path
Browse files Browse the repository at this point in the history
  • Loading branch information
Ki-er committed Jan 6, 2023
1 parent 446a573 commit 9242e1a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/slashCommands/fun/gorb.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'] });
}
},
};

0 comments on commit 9242e1a

Please sign in to comment.