feat: 添加特殊端的错误提示

Signed-off-by: 502647092 <admin@yumc.pw>
merge/1/MERGE
502647092 2016-12-16 16:35:16 +08:00
parent 77b65a77da
commit 543eb0db84
1 changed files with 11 additions and 0 deletions

View File

@ -22,6 +22,17 @@ import pw.yumc.YumCore.bukkit.compatible.C;
public class Tellraw implements Cloneable {
private List<MessagePart> messageParts = new ArrayList<>();
static {
if (Bukkit.getVersion().contains("Paper") || Bukkit.getVersion().contains("Torch")) {
Log.console("§c========== §4警 告 §c==========");
Log.console("§a 当前服务器为 §6Paper §a或 §6Torch ");
Log.console("§c 异步命令会刷报错 §b不影响使用");
Log.console("§d 如果介意请使用原版 Spigot");
Log.console("§e YUMC构建站: http://ci.yumc.pw/job/Spigot/");
Log.console("§c===========================");
}
}
public Tellraw(String text) {
messageParts.add(new MessagePart(text));
}