fix typo at debug image

master
Christopher Latza 2020-06-19 02:15:37 +02:00
부모 6c5f57690f
커밋 3ea48dfc4a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -213,7 +213,7 @@ namespace OpenSim.Modules.PathFinding
if (!thisNode.Walkable) if (!thisNode.Walkable)
_bitmap.SetPixel(thisNode.PositionX, thisNode.PositionY, Color.Black); _bitmap.SetPixel(thisNode.PositionX, thisNode.PositionY, Color.Black);
if (!thisNode.Target) if (thisNode.Target)
_bitmap.SetPixel(thisNode.PositionX, thisNode.PositionY, Color.Blue); _bitmap.SetPixel(thisNode.PositionX, thisNode.PositionY, Color.Blue);
} }