Use auto-saver system in plugin

This commit is contained in:
Gabriel Tofvesson 2021-11-10 19:23:56 +01:00
parent bfaae59d51
commit 3b485c4d41

View File

@ -42,6 +42,8 @@ class PortalsPlugin: JavaPlugin() {
val pluginCommand = getCommand("portals")!!
pluginCommand.tabCompleter = command
pluginCommand.setExecutor(command)
startAutoSaver()
}
override fun reloadConfig() {
@ -52,14 +54,19 @@ class PortalsPlugin: JavaPlugin() {
portalManager.reload()
}
private fun startAutoSaver() {
private fun cancelAutoSaver() {
val task = autoSaveTask
if (task != null) {
Bukkit.getScheduler().cancelTask(task.taskId)
autoSaveTask = null
}
}
val interval = config.getLong(PATH_AUTOSAVE, AUTOSAVE_DEFAULT)
private fun startAutoSaver() {
if (autoSaveTask != null)
cancelAutoSaver()
val interval = config.getLong(PATH_AUTOSAVE, AUTOSAVE_DEFAULT)
autoSaveTask = Bukkit.getScheduler().runTaskTimer(
this,
Runnable {
@ -76,6 +83,8 @@ class PortalsPlugin: JavaPlugin() {
override fun onDisable() {
super.onDisable()
cancelAutoSaver()
portalManager.onDisable()
data.save()