current configured cmds are stored in a Map<String, DiscordCommand>, and we check if a slash command is valid based on whether the command id exists in the map
we're using getCommandIdLong() though, which returns a long instead of a String
we should use getCommandId() instead (which returns a String representation of the command id)
current configured cmds are stored in a Map<String, DiscordCommand>, and we check if a slash command is valid based on whether the command id exists in the map
we're using
getCommandIdLong()
though, which returns a long instead of a Stringwe should use
getCommandId()
instead (which returns a String representation of the command id)