Use auto-saver system in plugin
This commit is contained in:
parent
bfaae59d51
commit
3b485c4d41
@ -42,6 +42,8 @@ class PortalsPlugin: JavaPlugin() {
|
|||||||
val pluginCommand = getCommand("portals")!!
|
val pluginCommand = getCommand("portals")!!
|
||||||
pluginCommand.tabCompleter = command
|
pluginCommand.tabCompleter = command
|
||||||
pluginCommand.setExecutor(command)
|
pluginCommand.setExecutor(command)
|
||||||
|
|
||||||
|
startAutoSaver()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun reloadConfig() {
|
override fun reloadConfig() {
|
||||||
@ -52,14 +54,19 @@ class PortalsPlugin: JavaPlugin() {
|
|||||||
portalManager.reload()
|
portalManager.reload()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startAutoSaver() {
|
private fun cancelAutoSaver() {
|
||||||
val task = autoSaveTask
|
val task = autoSaveTask
|
||||||
if (task != null) {
|
if (task != null) {
|
||||||
Bukkit.getScheduler().cancelTask(task.taskId)
|
Bukkit.getScheduler().cancelTask(task.taskId)
|
||||||
|
autoSaveTask = null
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startAutoSaver() {
|
||||||
|
if (autoSaveTask != null)
|
||||||
|
cancelAutoSaver()
|
||||||
|
|
||||||
val interval = config.getLong(PATH_AUTOSAVE, AUTOSAVE_DEFAULT)
|
val interval = config.getLong(PATH_AUTOSAVE, AUTOSAVE_DEFAULT)
|
||||||
|
|
||||||
autoSaveTask = Bukkit.getScheduler().runTaskTimer(
|
autoSaveTask = Bukkit.getScheduler().runTaskTimer(
|
||||||
this,
|
this,
|
||||||
Runnable {
|
Runnable {
|
||||||
@ -76,6 +83,8 @@ class PortalsPlugin: JavaPlugin() {
|
|||||||
override fun onDisable() {
|
override fun onDisable() {
|
||||||
super.onDisable()
|
super.onDisable()
|
||||||
|
|
||||||
|
cancelAutoSaver()
|
||||||
|
|
||||||
portalManager.onDisable()
|
portalManager.onDisable()
|
||||||
|
|
||||||
data.save()
|
data.save()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user