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