Some tweaks
This commit is contained in:
parent
5072c6ea10
commit
551c7294b5
5 changed files with 15 additions and 28 deletions
11
commands/image-editing/gif.js
Normal file
11
commands/image-editing/gif.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class GIFCommand extends ImageCommand {
|
||||
static description = "Converts an image into a GIF";
|
||||
static aliases = ["gif", "getgif", "togif", "tgif", "gifify"];
|
||||
|
||||
static noImage = "You need to provide an image to convert to GIF!";
|
||||
static command = "togif";
|
||||
}
|
||||
|
||||
export default GIFCommand;
|
|
@ -1,11 +0,0 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class ToGIFCommand extends ImageCommand {
|
||||
static description = "Turns an image into a gif";
|
||||
static aliases = ["tgif", "gifify"];
|
||||
|
||||
static noImage = "You need to provide an image to turn into a GIF!";
|
||||
static command = "togif";
|
||||
}
|
||||
|
||||
export default ToGIFCommand;
|
Loading…
Add table
Add a link
Reference in a new issue