2019-09-13 20:02:41 +00:00
|
|
|
const playSound = require("../utils/soundplayer.js");
|
|
|
|
|
|
|
|
exports.run = async (message) => {
|
|
|
|
return playSound("./assets/audio/prunejuice.opus", message);
|
|
|
|
};
|
|
|
|
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.aliases = ["juice", "grandma"];
|
|
|
|
exports.category = 6;
|
|
|
|
exports.help = "Plays the \"Drink yo prune juice\" sound effect";
|