Added uncaption, removed unncecessary log

This commit is contained in:
TheEssem 2021-05-04 16:28:34 -05:00
parent 9f7f4d21ba
commit 073c337d3d
5 changed files with 122 additions and 2 deletions

View file

@ -0,0 +1,10 @@
const ImageCommand = require("../../classes/imageCommand.js");
class UncaptionCommand extends ImageCommand {
static description = "Removes the caption from an image";
static noImage = "you need to provide an image to uncaption!";
static command = "uncaption";
}
module.exports = UncaptionCommand;