2020-06-27 17:18:26 +00:00
|
|
|
const soundPlayer = require("../utils/soundplayer.js");
|
|
|
|
|
|
|
|
exports.run = async (message) => {
|
2020-07-06 21:39:56 +00:00
|
|
|
return await soundPlayer.play("./assets/audio/boom.ogg", message);
|
2020-06-27 17:18:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["thud", "vine"];
|
|
|
|
exports.category = 6;
|
2020-06-27 21:34:31 +00:00
|
|
|
exports.help = "Plays the Vine boom sound effect";
|
|
|
|
exports.requires = "sound";
|