You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is an error in BaseGrid.GetNeighbors
The line:
if (tSD3 && this.IsWalkableAt(pos.Set(tX - 1, tY, tZ + 1)))
is duplicated.
The second one should be:
if (tSD3 && this.IsWalkableAt(pos.Set(tX - 1, tY, tZ - 1)))
Thanks a lot for this project!
The text was updated successfully, but these errors were encountered:
I think there is an error in BaseGrid.GetNeighbors
The line:
if (tSD3 && this.IsWalkableAt(pos.Set(tX - 1, tY, tZ + 1)))
is duplicated.
The second one should be:
if (tSD3 && this.IsWalkableAt(pos.Set(tX - 1, tY, tZ - 1)))
Thanks a lot for this project!
The text was updated successfully, but these errors were encountered: