diff options
author | syeyoung <cyoung06@naver.com> | 2021-10-07 19:03:59 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2021-10-07 19:03:59 +0900 |
commit | 21ed396dd1ae4d8b327f44cc013d2dd033a04209 (patch) | |
tree | 9f26b91f851369a81cd3700312350e5bd7974c27 /src/main | |
parent | cf359359a3ff0a358b983c7806c18ba1c6c06c4b (diff) | |
download | Skyblock-Dungeons-Guide-21ed396dd1ae4d8b327f44cc013d2dd033a04209.tar.gz Skyblock-Dungeons-Guide-21ed396dd1ae4d8b327f44cc013d2dd033a04209.tar.bz2 Skyblock-Dungeons-Guide-21ed396dd1ae4d8b327f44cc013d2dd033a04209.zip |
- remove icepath chat spam
Diffstat (limited to 'src/main')
-rwxr-xr-x | src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/icefill/RoomProcessorIcePath2.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/icefill/RoomProcessorIcePath2.java b/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/icefill/RoomProcessorIcePath2.java index bee05228..c0209fc6 100755 --- a/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/icefill/RoomProcessorIcePath2.java +++ b/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/icefill/RoomProcessorIcePath2.java @@ -75,13 +75,11 @@ public class RoomProcessorIcePath2 extends GeneralRoomProcessor { new Thread() { public void run() { - messageQueue.add("§eDungeons Guide §7:: §eIcePath §7:: §fCalculating solution for floor "+s); List<Point> hamiltonianPath = findFirstHamiltonianPath(map, startX, startY, endX, endY); if (hamiltonianPath == null) { messageQueue.add("§eDungeons Guide §7:: §eIcePath §7:: §cCouldn't find solution for floor "+s); return; } - messageQueue.add("§eDungeons Guide §7:: §eIcePath §7:: §fFound solution for floor "+s+"!"); hamiltonianPath.add(0,new Point(startX, startY)); List<BlockPos> poses = new LinkedList<BlockPos>(); for (int i = 0; i < hamiltonianPath.size(); i++) { |