fix typo at debug image

master
Christopher Latza 2020-06-19 02:15:37 +02:00
parent 6c5f57690f
commit 3ea48dfc4a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}