update imports

This commit is contained in:
q13x 2023-06-15 17:49:19 +00:00
parent 475d71677c
commit e7072d4a0c
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ import { Enums } from "./Enums.js"
import Packet from "./Packet.js" import Packet from "./Packet.js"
import SCDisconnectPacket from "./packets/SCDisconnectPacket.js" import SCDisconnectPacket from "./packets/SCDisconnectPacket.js"
import { MineProtocol } from "./Protocol.js" import { MineProtocol } from "./Protocol.js"
import { EaglerSkins } from "./EaglerSkins.js" import { EaglerSkins } from "./skins/EaglerSkins.js"
import { Util } from "./Util.js" import { Util } from "./Util.js"
import { BungeeUtil } from "./BungeeUtil.js" import { BungeeUtil } from "./BungeeUtil.js"

View File

@ -20,7 +20,7 @@ import { SCReadyPacket } from "./packets/SCReadyPacket.js";
import { Chalk } from "chalk"; import { Chalk } from "chalk";
import EventEmitter from "events"; import EventEmitter from "events";
import { MineProtocol } from "./Protocol.js"; import { MineProtocol } from "./Protocol.js";
import { EaglerSkins } from "./EaglerSkins.js"; import { EaglerSkins } from "./skins/EaglerSkins.js";
import { CSSetSkinPacket } from "./packets/CSSetSkinPacket.js"; import { CSSetSkinPacket } from "./packets/CSSetSkinPacket.js";
import { CSChannelMessagePacket } from "./packets/channel/CSChannelMessage.js"; import { CSChannelMessagePacket } from "./packets/channel/CSChannelMessage.js";
import { Constants, UPGRADE_REQUIRED_RESPONSE } from "./Constants.js"; import { Constants, UPGRADE_REQUIRED_RESPONSE } from "./Constants.js";

View File

@ -15,7 +15,7 @@ import { Constants } from "../Constants.js";
import { Motd } from "../Motd.js"; import { Motd } from "../Motd.js";
import { Player } from "../Player.js"; import { Player } from "../Player.js";
import { MineProtocol } from "../Protocol.js"; import { MineProtocol } from "../Protocol.js";
import { EaglerSkins } from "../EaglerSkins.js"; import { EaglerSkins } from "../skins/EaglerSkins.js";
import { BungeeUtil } from "../BungeeUtil.js"; import { BungeeUtil } from "../BungeeUtil.js";
export class PluginManager extends EventEmitter { export class PluginManager extends EventEmitter {