mrmBot-Matrix/commands/image-editing/speed.js

12 lines
380 B
JavaScript
Raw Normal View History

const ImageCommand = require("../../classes/imageCommand.js");
class SpeedCommand extends ImageCommand {
static description = "Makes an image sequence faster";
static aliases = ["speedup", "fast", "gifspeed", "faster"];
static requiresGIF = true;
static noImage = "you need to provide an image to speed up!";
static command = "speed";
}
module.exports = SpeedCommand;