mrmBot-Matrix/commands/fbi.js

9 lines
266 B
JavaScript
Raw Normal View History

const soundPlayer = require("../utils/soundplayer.js");
2019-09-13 20:02:41 +00:00
exports.run = async (message) => {
return soundPlayer.play("./assets/audio/fbi.ogg", message);
2019-09-13 20:02:41 +00:00
};
exports.aliases = ["openup"];
exports.category = 6;
exports.help = "Plays the \"FBI OPEN UP\" sound effect";