aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/dungeon
diff options
context:
space:
mode:
authorsyeyoung <cyong06@naver.com>2021-02-20 03:02:16 +0900
committersyeyoung <cyong06@naver.com>2021-02-20 03:02:16 +0900
commitc59bec09ffaedd85d3fa973abe4295137368ad7e (patch)
treebeb36945c84b5e2318ac96f939290705e05617f6 /src/main/java/kr/syeyoung/dungeonsguide/dungeon
parent16bbf7aadb8352090005f4fb0e68b2121bceb12e (diff)
downloadSkyblock-Dungeons-Guide-c59bec09ffaedd85d3fa973abe4295137368ad7e.tar.gz
Skyblock-Dungeons-Guide-c59bec09ffaedd85d3fa973abe4295137368ad7e.tar.bz2
Skyblock-Dungeons-Guide-c59bec09ffaedd85d3fa973abe4295137368ad7e.zip
the secrets
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/dungeon')
-rwxr-xr-xsrc/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoom.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoom.java b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoom.java
index eb6e3934..691926f7 100755
--- a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoom.java
+++ b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/roomfinder/DungeonRoom.java
@@ -80,9 +80,9 @@ public class DungeonRoom {
buildDoors();
buildRoom();
- updateRoomProcessor();
nodeProcessorDungeonRoom = new NodeProcessorDungeonRoom(this);
pathFinder = new PathFinder(nodeProcessorDungeonRoom);
+ updateRoomProcessor();
}
private static final Set<Vector2d> directions = Sets.newHashSet(new Vector2d(0,16), new Vector2d(0, -16), new Vector2d(16, 0), new Vector2d(-16 , 0));