From 71c910ab93efcec32c8a0e304379d68a310f6489 Mon Sep 17 00:00:00 2001 From: Tueem Date: Fri, 20 Dec 2024 17:03:35 +0100 Subject: [PATCH] fix equality check of ExecutableSlashCommand --- .../commands/ExecutableSlashCommandDefinition.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/main/java/net/tomatentum/marinara/interaction/commands/ExecutableSlashCommandDefinition.java b/lib/src/main/java/net/tomatentum/marinara/interaction/commands/ExecutableSlashCommandDefinition.java index e79f58b..655d813 100644 --- a/lib/src/main/java/net/tomatentum/marinara/interaction/commands/ExecutableSlashCommandDefinition.java +++ b/lib/src/main/java/net/tomatentum/marinara/interaction/commands/ExecutableSlashCommandDefinition.java @@ -18,8 +18,8 @@ public record ExecutableSlashCommandDefinition( ExecutableSlashCommandDefinition other = (ExecutableSlashCommandDefinition) o; boolean equals = false; - if (this.applicationCommand() != null && other.subCommandGroup() != null) - equals = this.applicationCommand.name().equals(other.applicationCommand().name()); + if (this.applicationCommand() != null && other.applicationCommand() != null) + equals = this.applicationCommand().name().equals(other.applicationCommand().name()); if (this.subCommandGroup() != null && other.subCommandGroup() != null) equals = this.subCommandGroup().name().equals(other.subCommandGroup().name());