graph: change outgoing path to white again (fix #277)

This commit is contained in:
dmitry 2022-01-17 10:01:18 +03:00
commit c4116da021
No known key found for this signature in database
GPG key ID: 8297CE728B7A7E37

View file

@ -2334,7 +2334,7 @@ void BotGraph::frame () {
// now look for oneway incoming connections
for (const auto &connected : m_paths) {
if (isConnected (connected.number, path.number) && !isConnected (path.number, connected.number)) {
game.drawLine (m_editor, path.origin, connected.origin, 5, 0, { 0, 192, 96 }, 200, 0, 10);
game.drawLine (m_editor, path.origin, connected.origin, 5, 0, { 255, 255, 255 }, 200, 0, 10);
}
}