13 lines
392 B
JavaScript
13 lines
392 B
JavaScript
|
const soundPlayer = require("../../utils/soundplayer.js");
|
||
|
const MusicCommand = require("../../classes/musicCommand.js");
|
||
|
|
||
|
class BruhCommand extends MusicCommand {
|
||
|
async run() {
|
||
|
return await soundPlayer.play(this.client, "./assets/audio/bruh.ogg", this.message);
|
||
|
}
|
||
|
|
||
|
static description = "Plays the \"bruh\" sound effect";
|
||
|
static aliases = ["bro"];
|
||
|
}
|
||
|
|
||
|
module.exports = BruhCommand;
|