2 커밋 a521c04abe ... 231901e716

작성자 SHA1 메시지 날짜
  Leon Palluch 231901e716 Merge branch 'algorithm' 4 년 전
  Leon Palluch 5076837b87 falschen 0er ausgebessert 4 년 전
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/pathgame/algorithm/DijkstraMagic.java

+ 1 - 1
src/pathgame/algorithm/DijkstraMagic.java

@@ -161,7 +161,7 @@ public class DijkstraMagic {
                 weightMap[posX][posY].setPrevOfPath(dir);
             }
             else {
-                weightMap[posX][posY].setPrevBoatPath(0);
+                weightMap[posX][posY].setPrevBoatPath(extraInd);
             }
         }