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