Added deepfry, make jpeg work on GIFs

This commit is contained in:
Essem 2021-06-29 17:26:22 -05:00
parent 4672e8d6ad
commit 2da505a778
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
43 changed files with 162 additions and 157 deletions

View file

@ -0,0 +1,11 @@
const ImageCommand = require("../../classes/imageCommand.js");
class DeepfryCommand extends ImageCommand {
static description = "Deep-fries an image";
static aliases = ["fry", "jpeg2", "nuke"];
static noImage = "You need to provide an image to fry!";
static command = "deepfry";
}
module.exports = DeepfryCommand;