This commit is contained in:
Leijurv
2018-08-05 17:20:55 -04:00
parent 10212601c8
commit c1306ab8bf

View File

@@ -28,6 +28,9 @@ public class PathingBehavior extends Behavior {
} }
public IPath getPath() { public IPath getPath() {
if (current == null) {
return null;
}
return current.getPath(); return current.getPath();
} }
} }