Fixed emote classic command
This commit is contained in:
parent
c4e31ac409
commit
73a2fd9856
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ import Command from "../../classes/command.js";
|
|||
|
||||
class EmoteCommand extends Command {
|
||||
async run() {
|
||||
const emoji = this.type === "classic" ? this.args.join(" ") : this.options.emoji;
|
||||
const emoji = this.type === "classic" ? this.content : this.options.emoji;
|
||||
if (!emoji || !emoji.trim()) return "You need to provide an emoji!";
|
||||
if (emoji.split(" ")[0].match(/^<a?:.+:\d+>$/)) {
|
||||
return `https://cdn.discordapp.com/emojis/${emoji.split(" ")[0].replace(/^<(a)?:.+:(\d+)>$/, "$2")}.${emoji.split(" ")[0].replace(/^<(a)?:.+:(\d+)>$/, "$1") === "a" ? "gif" : "png"}`;
|
||||
|
@ -30,4 +30,4 @@ class EmoteCommand extends Command {
|
|||
static arguments = ["[emote]"];
|
||||
}
|
||||
|
||||
export default EmoteCommand;
|
||||
export default EmoteCommand;
|
||||
|
|
Loading…
Reference in a new issue