aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder
diff options
context:
space:
mode:
authorsyeyoung <42869671+cyoung06@users.noreply.github.com>2020-12-09 12:22:34 +0900
committersyeyoung <42869671+cyoung06@users.noreply.github.com>2020-12-09 12:22:34 +0900
commitd165e145f7066bd46e2a0b2b0fd0752ba7156cae (patch)
tree6a158a05f987c37da35b8021484bc9ed31c49de5 /src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder
parent8f8fd536fa34fee9a941408b05e5d55c6d6e77f6 (diff)
downloadSkyblock-Dungeons-Guide-d165e145f7066bd46e2a0b2b0fd0752ba7156cae.tar.gz
Skyblock-Dungeons-Guide-d165e145f7066bd46e2a0b2b0fd0752ba7156cae.tar.bz2
Skyblock-Dungeons-Guide-d165e145f7066bd46e2a0b2b0fd0752ba7156cae.zip
more hacky stuff
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder')
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java2
1 files changed, 1 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 83b9d395..b5bc69ea 100644
--- a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java
+++ b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoomInfoRegistry.java
@@ -69,7 +69,7 @@ public class DungeonRoomInfoRegistry {
registered.clear();
shapeMap.clear();
uuidMap.clear();
- URL url = new URL("dungeonsguide://"+DungeonsGuideMain.getDungeonsGuideMain().getAuthenticator().getToken()+"@/roomdata/data.txt");
+ URL url = new URL("dungeonsguide://"+DungeonsGuideMain.getDungeonsGuideMain().getAuthenticator().getToken()+"@/roomdatas/data.txt");
List<String> lines = IOUtils.readLines(url.openConnection().getInputStream());
for (String name : lines) {
if (name.endsWith(".roomdata")) continue;