1
mirror of https://github.com/carm-outsource/TimeReward.git synced 2026-06-05 00:25:15 +08:00

完成用户数据读取与保存

This commit is contained in:
2022-02-28 04:38:52 +08:00
parent e17ecd68ea
commit 8f15e30d98
14 changed files with 554 additions and 11 deletions
@@ -6,9 +6,10 @@ import cc.carm.lib.easyplugin.configuration.language.MessagesRoot;
public class PluginMessages extends MessagesRoot {
public static final EasyMessageList NOT_ONLINE = new EasyMessageList(
new String[]{"&7玩家 &c%(player) &7并不在线。"},
new String[]{"%(player)"}
);
public static final EasyMessageList NOT_ONLINE = EasyMessageList.builder()
.contents("&7玩家 &c%(player) &7并不在线。")
.params("player")
.build();
}