From e7072d4a0c56e0e18fe4f45ff64c2cfff13218aa Mon Sep 17 00:00:00 2001 From: q13x <84165981+WorldEditAxe@users.noreply.github.com> Date: Thu, 15 Jun 2023 17:49:19 +0000 Subject: [PATCH] update imports --- src/proxy/Player.ts | 2 +- src/proxy/Proxy.ts | 2 +- src/proxy/pluginLoader/PluginManager.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/proxy/Player.ts b/src/proxy/Player.ts index fb58fe7..d8dfdf4 100644 --- a/src/proxy/Player.ts +++ b/src/proxy/Player.ts @@ -8,7 +8,7 @@ import { Enums } from "./Enums.js" import Packet from "./Packet.js" import SCDisconnectPacket from "./packets/SCDisconnectPacket.js" import { MineProtocol } from "./Protocol.js" -import { EaglerSkins } from "./EaglerSkins.js" +import { EaglerSkins } from "./skins/EaglerSkins.js" import { Util } from "./Util.js" import { BungeeUtil } from "./BungeeUtil.js" diff --git a/src/proxy/Proxy.ts b/src/proxy/Proxy.ts index 71fe1ad..ead959d 100644 --- a/src/proxy/Proxy.ts +++ b/src/proxy/Proxy.ts @@ -20,7 +20,7 @@ import { SCReadyPacket } from "./packets/SCReadyPacket.js"; import { Chalk } from "chalk"; import EventEmitter from "events"; import { MineProtocol } from "./Protocol.js"; -import { EaglerSkins } from "./EaglerSkins.js"; +import { EaglerSkins } from "./skins/EaglerSkins.js"; import { CSSetSkinPacket } from "./packets/CSSetSkinPacket.js"; import { CSChannelMessagePacket } from "./packets/channel/CSChannelMessage.js"; import { Constants, UPGRADE_REQUIRED_RESPONSE } from "./Constants.js"; diff --git a/src/proxy/pluginLoader/PluginManager.ts b/src/proxy/pluginLoader/PluginManager.ts index a785c50..ce58a30 100644 --- a/src/proxy/pluginLoader/PluginManager.ts +++ b/src/proxy/pluginLoader/PluginManager.ts @@ -15,7 +15,7 @@ import { Constants } from "../Constants.js"; import { Motd } from "../Motd.js"; import { Player } from "../Player.js"; import { MineProtocol } from "../Protocol.js"; -import { EaglerSkins } from "../EaglerSkins.js"; +import { EaglerSkins } from "../skins/EaglerSkins.js"; import { BungeeUtil } from "../BungeeUtil.js"; export class PluginManager extends EventEmitter {