feat: remove async check
Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
parent
9ea4a067f1
commit
a3f8451842
@ -98,11 +98,9 @@ export namespace event {
|
||||
if (eventCls.isAssignableFrom(event.getClass())) {
|
||||
let time = Date.now()
|
||||
exec(event);
|
||||
if (event.isAsynchronous()) {
|
||||
let cost = Date.now() - time;
|
||||
if (cost > 20) {
|
||||
console.console(`§c注意! §6插件 §b${name} §6处理 §d${this.class2Name(eventCls)} §6事件 §c耗时 §4${cost}ms !`)
|
||||
}
|
||||
let cost = Date.now() - time;
|
||||
if (cost > 20) {
|
||||
console.console(`§c注意! §6插件 §b${name} §6处理 §d${this.class2Name(eventCls)} §6事件 §c耗时 §4${cost}ms !`)
|
||||
}
|
||||
}
|
||||
} catch (ex) {
|
||||
|
Loading…
Reference in New Issue
Block a user