Hi. There is a bug in Detour.getTileByRef. The first check against 0 should be flipped: ``` public dtMeshTile getTileByRef(dtTileRef tileRef) { if (tileRef == 0) <--- here return null; ```