fix issues with ExecutableSlashCommandDefinition equals check
This commit is contained in:
parent
432db43bf5
commit
a5e1230fc6
4
lib/src/main/java/net/tomatentum/marinara/interaction/commands/ExecutableSlashCommandDefinition.java
4
lib/src/main/java/net/tomatentum/marinara/interaction/commands/ExecutableSlashCommandDefinition.java
@ -27,8 +27,8 @@ public record ExecutableSlashCommandDefinition(
|
|||||||
ExecutableSlashCommandDefinition other = (ExecutableSlashCommandDefinition) o;
|
ExecutableSlashCommandDefinition other = (ExecutableSlashCommandDefinition) o;
|
||||||
boolean equals = false;
|
boolean equals = false;
|
||||||
|
|
||||||
if (this.applicationCommand() != null && other.subCommandGroup() != null)
|
if (this.applicationCommand() != null && other.applicationCommand() != null)
|
||||||
equals = this.applicationCommand.name().equals(other.applicationCommand().name());
|
equals = this.applicationCommand().name().equals(other.applicationCommand().name());
|
||||||
|
|
||||||
if (this.subCommandGroup() != null && other.subCommandGroup() != null)
|
if (this.subCommandGroup() != null && other.subCommandGroup() != null)
|
||||||
equals = this.subCommandGroup().name().equals(other.subCommandGroup().name());
|
equals = this.subCommandGroup().name().equals(other.subCommandGroup().name());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user