diff options
author | syeyoung <42869671+cyoung06@users.noreply.github.com> | 2020-12-08 23:20:48 +0900 |
---|---|---|
committer | syeyoung <42869671+cyoung06@users.noreply.github.com> | 2020-12-08 23:20:48 +0900 |
commit | 59b58a13d4bb5d7584e24f884b6d6890d4dd2905 (patch) | |
tree | 807541a4a26ebb2771bb35b8911dad9d5f1af8b6 /src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder | |
parent | a00a2cfed6980a5f71c40a3df1cb5cb69e87f17d (diff) | |
download | Skyblock-Dungeons-Guide-59b58a13d4bb5d7584e24f884b6d6890d4dd2905.tar.gz Skyblock-Dungeons-Guide-59b58a13d4bb5d7584e24f884b6d6890d4dd2905.tar.bz2 Skyblock-Dungeons-Guide-59b58a13d4bb5d7584e24f884b6d6890d4dd2905.zip |
interesting more
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder')
-rw-r--r-- | src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java index 2fc225df..b96e4366 100644 --- a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java +++ b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java @@ -2,6 +2,7 @@ package kr.syeyoung.dungeonsguide.dungeon.roomfinder; import kr.syeyoung.dungeonsguide.Authenticator; import kr.syeyoung.dungeonsguide.DungeonsGuide; +import kr.syeyoung.dungeonsguide.DungeonsGuideMain; import kr.syeyoung.dungeonsguide.dungeon.data.DungeonRoomInfo; import javax.crypto.BadPaddingException; @@ -66,7 +67,7 @@ public class DungeonRoomInfoRegistry { registered.clear(); shapeMap.clear(); uuidMap.clear(); - Authenticator authenticator = DungeonsGuide.getDungeonsGuide().getAuthenticator(); + Authenticator authenticator = DungeonsGuideMain.getDungeonsGuideMain().getAuthenticator(); InputStream inputStream = authenticator.getInputStream("roomdata/datas.txt"); inputStream.read(new byte[4]); BufferedReader br = new BufferedReader(new InputStreamReader(inputStream)); |