UNPKG

yoni-mcscripts-lib

Version:

为 Minecraft Script API 中的部分接口创建了 wrapper,并提供简单的事件管理器和任务管理器,另附有一些便于代码编写的一些小工具。

9 lines (8 loc) 231 B
export class EventError extends Error { constructor(registry, event, error) { super("处理事件时遇到了错误:" + error.message); this.name = "EventError"; this.cause = error; } cause; }