Skip to content

Commit 9242e1a

Browse files
committed
fix: Fix gorb file path
1 parent 446a573 commit 9242e1a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/slashCommands/fun/gorb.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,27 @@ module.exports = {
2727
const string = interaction.options.getString('type');
2828

2929
if (string == null) {
30-
await interaction.reply({ files: ['./images/gorb.jpg'] });
30+
await interaction.reply({ files: ['./src/images/gorb.jpg'] });
3131
}
3232

3333
if (string == 'cs') {
34-
await interaction.reply({ files: ['./images/gorbcs.jpg'] });
34+
await interaction.reply({ files: ['./src/images/gorbcs.jpg'] });
3535
}
3636

3737
if (string == 'party') {
38-
await interaction.reply({ files: ['./images/gorbcelebration.PNG'] });
38+
await interaction.reply({ files: ['./src/images/gorbcelebration.PNG'] });
3939
}
4040

4141
if (string == 'christmas') {
42-
await interaction.reply({ files: ['./images/gorbchristmas.PNG'] });
42+
await interaction.reply({ files: ['./src/images/gorbchristmas.PNG'] });
4343
}
4444

4545
if (string == 'storm') {
46-
await interaction.reply({ files: ['./images/gorbstorm.PNG'] });
46+
await interaction.reply({ files: ['./src/images/gorbstorm.PNG'] });
4747
}
4848

4949
if (string == 'large') {
50-
await interaction.reply({ files: ['./images/gorblarge.png'] });
50+
await interaction.reply({ files: ['./src/images/gorblarge.png'] });
5151
}
5252
},
5353
};

0 commit comments

Comments
 (0)