This commit is contained in:
Leijurv 2018-08-05 17:20:55 -04:00
parent 10212601c8
commit c1306ab8bf
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

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();
} }
} }