mrmBot-Matrix/commands/stop.js

10 lines
248 B
JavaScript
Raw Normal View History

const soundPlayer = require("../utils/soundplayer.js");
exports.run = async (message) => {
2020-07-06 21:39:56 +00:00
await soundPlayer.stop(message);
};
exports.aliases = ["disconnect"];
exports.category = 7;
exports.help = "Stops the music";
exports.requires = "sound";