compare ApplicationCommand annotations only by name
This commit is contained in:
		@@ -15,7 +15,7 @@ public record ExecutableCommandDefinition(
 | 
				
			|||||||
        if (!(o instanceof ExecutableCommandDefinition))
 | 
					        if (!(o instanceof ExecutableCommandDefinition))
 | 
				
			||||||
            return false;
 | 
					            return false;
 | 
				
			||||||
        ExecutableCommandDefinition other = (ExecutableCommandDefinition) o;
 | 
					        ExecutableCommandDefinition other = (ExecutableCommandDefinition) o;
 | 
				
			||||||
        return other.applicationCommand.equals(this.applicationCommand) && 
 | 
					        return other.applicationCommand.name().equals(this.applicationCommand.name()) && 
 | 
				
			||||||
            other.subCommandGroups.equals(this.subCommandGroups) &&
 | 
					            other.subCommandGroups.equals(this.subCommandGroups) &&
 | 
				
			||||||
            other.subCommand.equals(this.subCommand);
 | 
					            other.subCommand.equals(this.subCommand);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user