mirror of
https://e.coding.net/circlecloud/Yum.git
synced 2024-11-22 14:28:46 +00:00
feat: 命令错误时提示玩家
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
10bdef4763
commit
adaff66241
@ -119,6 +119,10 @@ public class CommandInjector implements TabExecutor {
|
|||||||
while (e.getCause() != null) {
|
while (e.getCause() != null) {
|
||||||
e = e.getCause();
|
e = e.getCause();
|
||||||
}
|
}
|
||||||
|
sender.sendMessage(prefix + "§c命令执行异常 请反馈下列信息给腐竹!");
|
||||||
|
sender.sendMessage("§6插件名称: §b" + plugin.getName());
|
||||||
|
sender.sendMessage("§6异常名称: §c" + e.getClass().getName());
|
||||||
|
sender.sendMessage("§6异常说明: §3" + e.getMessage());
|
||||||
MonitorCommand.lastError = e;
|
MonitorCommand.lastError = e;
|
||||||
PluginKit.sc(prefix + "§6玩家 §a" + sender.getName() + " §6执行 §b" + plugin.getName() + " §6插件 §d" + label + " " + StrKit.join(args, " ") + " §6命令时发生异常!");
|
PluginKit.sc(prefix + "§6玩家 §a" + sender.getName() + " §6执行 §b" + plugin.getName() + " §6插件 §d" + label + " " + StrKit.join(args, " ") + " §6命令时发生异常!");
|
||||||
PluginKit.sc("§6异常名称: §c" + e.getClass().getName());
|
PluginKit.sc("§6异常名称: §c" + e.getClass().getName());
|
||||||
|
Loading…
Reference in New Issue
Block a user