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

15 lines
349 B
JavaScript
Raw Normal View History

import ImageCommand from "../../classes/imageCommand.js";
class UnfreezeCommand extends ImageCommand {
params = {
loop: true
};
static description = "Unfreezes an image sequence";
static requiresGIF = true;
2021-05-24 19:31:44 +00:00
static noImage = "You need to provide an image to unfreeze!";
static command = "freeze";
}
export default UnfreezeCommand;