diff --git a/src/BasicPathFinding.cs b/src/BasicPathFinding.cs index 4ac600e..563ebda 100644 --- a/src/BasicPathFinding.cs +++ b/src/BasicPathFinding.cs @@ -213,7 +213,7 @@ namespace OpenSim.Modules.PathFinding if (!thisNode.Walkable) _bitmap.SetPixel(thisNode.PositionX, thisNode.PositionY, Color.Black); - if (!thisNode.Target) + if (thisNode.Target) _bitmap.SetPixel(thisNode.PositionX, thisNode.PositionY, Color.Blue); }