Added freeze

This commit is contained in:
TheEssem 2020-04-23 17:08:53 -05:00
parent 97c5ee8c05
commit 67be772998
1 changed files with 19 additions and 0 deletions

19
commands/freeze.js Normal file
View File

@ -0,0 +1,19 @@
const gm = require("gm").subClass({
imageMagick: true
});
exports.run = async (message) => {
message.channel.sendTyping();
const image = await require("../utils/imagedetect.js")(message);
if (image === undefined) return `${message.author.mention}, you need to provide a GIF to freeze!`;
if (image.type !== "gif") return `${message.author.mention}, that isn't a GIF!`;
const buffer = await gm(image.path).loop(1).bufferPromise(image.type, image.delay);
return {
file: buffer,
name: `freeze.${image.type}`
};
};
exports.aliases = ["noloop", "once"];
exports.category = 5;
exports.help = "Makes a GIF only play once";