Fix delay bug on jpeg/deepfry, remove mc/blurple
This commit is contained in:
parent
4ac90bc761
commit
9d7ba365c8
5 changed files with 3 additions and 54 deletions
|
@ -1,28 +0,0 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class BlurpleCommand extends ImageCommand {
|
||||
params() {
|
||||
return {
|
||||
old: !!this.specialArgs.old,
|
||||
color: "blurple"
|
||||
};
|
||||
}
|
||||
|
||||
static description = "Turns an image blurple";
|
||||
|
||||
static init() {
|
||||
super.init();
|
||||
this.flags.push({
|
||||
name: "old",
|
||||
description: "Use the old blurple color",
|
||||
type: 5
|
||||
});
|
||||
return this;
|
||||
}
|
||||
|
||||
static noImage = "You need to provide an image/GIF to make blurple!";
|
||||
static command = "colors";
|
||||
static aliases = ["blurp"];
|
||||
}
|
||||
|
||||
export default BlurpleCommand;
|
Loading…
Add table
Add a link
Reference in a new issue