Help Command

This commit is contained in:
alexcrea 2026-03-03 04:08:04 +01:00
parent bc7ed5af85
commit 0440835013
Signed by: alexcrea
GPG key ID: E346CD16413450E3
7 changed files with 58 additions and 5 deletions

View file

@ -6,7 +6,7 @@ import org.bukkit.configuration.file.YamlConfiguration
import org.bukkit.plugin.java.JavaPlugin
import xyz.alexcrea.cuanvil.api.event.CAConfigReadyEvent
import xyz.alexcrea.cuanvil.api.event.CAEnchantRegistryReadyEvent
import xyz.alexcrea.cuanvil.command.CustomAnvilCmd
import xyz.alexcrea.cuanvil.command.CustomAnvilCommand
import xyz.alexcrea.cuanvil.command.EditConfigExecutor
import xyz.alexcrea.cuanvil.command.ReloadExecutor
import xyz.alexcrea.cuanvil.config.ConfigHolder
@ -309,7 +309,7 @@ open class CustomAnvil : JavaPlugin() {
command = getCommand(commandConfigName)
command?.setExecutor(EditConfigExecutor())
CustomAnvilCmd(this)
CustomAnvilCommand(this)
}
}