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 {
 | 
					class EmoteCommand extends Command {
 | 
				
			||||||
  async run() {
 | 
					  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 || !emoji.trim()) return "You need to provide an emoji!";
 | 
				
			||||||
    if (emoji.split(" ")[0].match(/^<a?:.+:\d+>$/)) {
 | 
					    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"}`;
 | 
					      return `https://cdn.discordapp.com/emojis/${emoji.split(" ")[0].replace(/^<(a)?:.+:(\d+)>$/, "$2")}.${emoji.split(" ")[0].replace(/^<(a)?:.+:(\d+)>$/, "$1") === "a" ? "gif" : "png"}`;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue