Finished Achievements.

This commit is contained in:
AlgorithmX2
2014-09-14 00:02:02 -05:00
parent 37aaa8776f
commit 4e90cd73f6
7 changed files with 150 additions and 13 deletions
+4 -1
View File
@@ -25,7 +25,8 @@ public class PathSegment
PathGridCache pgc;
public PathSegment(PathGridCache myPGC, List open, Set semiopen, Set closed) {
public PathSegment(PathGridCache myPGC, List open, Set semiopen, Set closed)
{
this.open = open;
this.semiopen = semiopen;
this.closed = closed;
@@ -110,6 +111,7 @@ public class PathSegment
pi = pi.getControllerRoute();
}
pgc.channelsInUse++;
return true;
}
@@ -132,6 +134,7 @@ public class PathSegment
pi = pi.getControllerRoute();
}
pgc.channelsInUse++;
return true;
}