2020-06-27 17:18:26 +00:00
|
|
|
const soundPlayer = require("../utils/soundplayer.js");
|
2019-09-13 20:02:41 +00:00
|
|
|
|
|
|
|
exports.run = async (message) => {
|
2020-06-27 17:18:26 +00:00
|
|
|
return soundPlayer.play("./assets/audio/boi.ogg", message);
|
2019-09-13 20:02:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["boy", "neutron", "hugh"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 6;
|
|
|
|
exports.help = "Plays the \"boi\" sound effect";
|