From 85e9f2c63697fc27743f651cb1a776b793eef86f Mon Sep 17 00:00:00 2001 From: Danielle Voznyy Date: Thu, 6 Jun 2024 13:54:57 -0400 Subject: [PATCH] chore(commands): Add deprecation notice for old command DSL --- .../idofront/commands/execution/IdofrontCommandExecutor.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/idofront-commands/src/main/kotlin/com/mineinabyss/idofront/commands/execution/IdofrontCommandExecutor.kt b/idofront-commands/src/main/kotlin/com/mineinabyss/idofront/commands/execution/IdofrontCommandExecutor.kt index a275b133..90df9901 100644 --- a/idofront-commands/src/main/kotlin/com/mineinabyss/idofront/commands/execution/IdofrontCommandExecutor.kt +++ b/idofront-commands/src/main/kotlin/com/mineinabyss/idofront/commands/execution/IdofrontCommandExecutor.kt @@ -9,6 +9,7 @@ import org.bukkit.plugin.java.JavaPlugin /** * Manages linking spigot's [CommandExecutor.onCommand] events to a [CommandDSLEntrypoint] inside */ +@Deprecated("Use Idofront's Brigadier DSL instead") abstract class IdofrontCommandExecutor : CommandExecutor { abstract val commands: CommandDSLEntrypoint