fix: bukkit task error

Signed-off-by: MiaoWoo <admin@yumc.pw>
backup
MiaoWoo 2019-09-22 18:01:50 +08:00
parent 9121683e77
commit b0915648ea
1 changed files with 1 additions and 3 deletions

View File

@ -22,10 +22,8 @@ export class BukkitTask extends task.Task {
let funcName = `runTask${this.interval ? 'Timer' : 'Later'}${this.isAsync ? 'Asynchronously' : ''}`
if (this.interval) {
return run[funcName](this.plugin, this.laterTime, this.interval)
} else if (this.laterTime) {
return run[funcName](this.plugin, this.laterTime)
} else {
return run[funcName](this.plugin)
return run[funcName](this.plugin, this.laterTime)
}
}
}