mrmBot-Matrix/commands/bruh.js

10 lines
291 B
JavaScript
Raw Normal View History

const soundPlayer = require("../utils/soundplayer.js");
2019-09-13 20:02:41 +00:00
exports.run = async (message) => {
2020-07-06 21:39:56 +00:00
return await soundPlayer.play("./assets/audio/bruh.ogg", message);
2019-09-13 20:02:41 +00:00
};
exports.aliases = ["bro"];
exports.category = 6;
exports.help = "Plays the \"bruh\" sound effect";
exports.requires = "sound";