fix: bukkit task error
Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
parent
9121683e77
commit
b0915648ea
@ -22,10 +22,8 @@ export class BukkitTask extends task.Task {
|
|||||||
let funcName = `runTask${this.interval ? 'Timer' : 'Later'}${this.isAsync ? 'Asynchronously' : ''}`
|
let funcName = `runTask${this.interval ? 'Timer' : 'Later'}${this.isAsync ? 'Asynchronously' : ''}`
|
||||||
if (this.interval) {
|
if (this.interval) {
|
||||||
return run[funcName](this.plugin, this.laterTime, this.interval)
|
return run[funcName](this.plugin, this.laterTime, this.interval)
|
||||||
} else if (this.laterTime) {
|
|
||||||
return run[funcName](this.plugin, this.laterTime)
|
|
||||||
} else {
|
} else {
|
||||||
return run[funcName](this.plugin)
|
return run[funcName](this.plugin, this.laterTime)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user