1
mirror of https://github.com/CarmJos/MoeTeleport.git synced 2024-09-19 21:35:56 +00:00

[2.1.0] 版本更新

- [F] 修复玩家给自己发送传送请求的问题。
- [A] 添加 插件更新 提示,允许自定义开关。
- [A] 添加 插件统计,允许自定义开关。
- [A] 实现 #6 提到的多数据源支持,目前支持 YAML、JSON与MySQL,并提供CUSTOM数据源允许开发者重写。
- [A] 对于家的名字长度做出限制,为 30 个字符。
- [U] 对于判断用户最多设置家数量的权限,不再添加“MoeTeleport”开头。
This commit is contained in:
Carm Jos 2022-02-25 04:38:58 +08:00
parent 5424c389ce
commit 947799e8b2

View File

@ -196,9 +196,9 @@ public class SchedulerUtils {
public SchedulerUtils.TaskBuilder appendTasks(long delay, long interval, Runnable... tasks) { public SchedulerUtils.TaskBuilder appendTasks(long delay, long interval, Runnable... tasks) {
this.taskList.add((onComplete) -> { this.taskList.add((onComplete) -> {
Runnable[] runnables = Arrays.copyOf(tasks, tasks.length + 1); Runnable[] all = Arrays.copyOf(tasks, tasks.length + 1);
runnables[runnables.length - 1] = onComplete; all[all.length - 1] = onComplete;
SchedulerUtils.this.runAtInterval(delay, interval, runnables); SchedulerUtils.this.runAtInterval(delay, interval, all);
}); });
return this; return this;
} }