mirror of
https://github.com/alexcrea/CustomAnvil.git
synced 2026-06-23 16:16:17 +02:00
53 lines
2 KiB
Kotlin
53 lines
2 KiB
Kotlin
package xyz.alexcrea.cuanvil.command
|
|
|
|
import io.delilaheve.CustomAnvil
|
|
import org.bukkit.command.Command
|
|
import org.bukkit.command.CommandExecutor
|
|
import org.bukkit.command.CommandSender
|
|
import xyz.alexcrea.cuanvil.config.ConfigHolder
|
|
import xyz.alexcrea.cuanvil.gui.config.global.*
|
|
|
|
class ReloadExecutor : CommandExecutor {
|
|
override fun onCommand(sender: CommandSender, cmd: Command, cmdstr: String, args: Array<out String>): Boolean {
|
|
if (!sender.hasPermission(CustomAnvil.commandReloadPermission)) {
|
|
sender.sendMessage("§cYou do not have permission to reload the config")
|
|
return false
|
|
}
|
|
sender.sendMessage("§eReloading config...")
|
|
val hardfail = args.isNotEmpty() && ("hard".equals(args[0], true))
|
|
val commandSuccess = commandBody(hardfail)
|
|
if (commandSuccess) {
|
|
sender.sendMessage("§aConfig reloaded !")
|
|
} else {
|
|
sender.sendMessage("§cConfig was not able to be reloaded...")
|
|
if (hardfail) {
|
|
sender.sendMessage("§4Hard fail, plugin disabled")
|
|
}
|
|
}
|
|
return commandSuccess
|
|
}
|
|
|
|
/**
|
|
* Execute the command, return true if success or false otherwise
|
|
*/
|
|
private fun commandBody(hardfail: Boolean): Boolean {
|
|
try {
|
|
if (!ConfigHolder.reloadAllFromDisk(hardfail)) return false
|
|
|
|
// Then update all global gui containing value from config
|
|
BasicConfigGui.getInstance()?.updateGuiValues()
|
|
EnchantCostConfigGui.getInstance()?.updateGuiValues()
|
|
EnchantLimitConfigGui.getInstance()?.updateGuiValues()
|
|
|
|
EnchantConflictGui.INSTANCE.reloadValues()
|
|
GroupConfigGui.INSTANCE.reloadValues()
|
|
UnitRepairConfigGui.INSTANCE.reloadValues()
|
|
CustomRecipeConfigGui.INSTANCE.reloadValues()
|
|
|
|
return true
|
|
} catch (e: Exception) {
|
|
e.printStackTrace()
|
|
return false
|
|
}
|
|
}
|
|
}
|