diff --git a/FightSystem_Core/src/de/steamwar/fightsystem/ai/navmesh/NavMesh.java b/FightSystem_Core/src/de/steamwar/fightsystem/ai/navmesh/NavMesh.java index 4aaf9f4..7599eac 100644 --- a/FightSystem_Core/src/de/steamwar/fightsystem/ai/navmesh/NavMesh.java +++ b/FightSystem_Core/src/de/steamwar/fightsystem/ai/navmesh/NavMesh.java @@ -152,7 +152,9 @@ public class NavMesh implements Listener { private void checkNeighbouring(Pos pos, double posFloorHeight) { for (BlockFace blockFace : FACES) { + // TODO: Check FenceGates, Doors, usw. for (int cy = pos.y - 2; cy <= pos.y + 2; cy++) { + // TODO: Fix Ladder in Underground Pos other = new Pos(pos.x + blockFace.getModX(), cy, pos.z + blockFace.getModZ()); Double otherFloorHeight = floorBlock.get(other); if (otherFloorHeight == null) continue;