add first ApplicationCommandDefinition implementation

This commit is contained in:
2024-10-15 17:30:39 +02:00
parent 89d172e2f3
commit 410b299ad6
2 changed files with 43 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ public class InteractionRegistry {
execDefs.forEach((def) -> {
Optional<ApplicationCommandDefinition> appDef = defs.stream()
.filter((x) -> x.applicationCommand().equals(def.applicationCommand()))
.filter((x) -> x.getApplicationCommand().equals(def.applicationCommand()))
.findFirst();
if (appDef.isPresent())
appDef.get().addExecutableCommand(def);