Possible small bug in latest beta version (4.3.34)

Searching through the source code I’ve noticed that this method is wrong since LayeredGridGraph can now support 8 connections for some time.

LayereGridGenerator.cs:890

public override bool HasConnectionsToAllEightNeighbours {
			get {
				// Layered grid graphs only support 4 neighbours
				return false;
			}
		}

Just letting you know. cheers.