Skip to content

Commit

Permalink
fix #14349
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Feb 23, 2024
1 parent 3d2b13f commit f447c3f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/microsim/traffic_lights/MSRailSignal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,14 @@ MSRailSignal::DriveWay::conflictLaneOccupied(const std::string& joinVehicle, boo
if (gDebugFlag4) {
std::cout << " ignore ego as oncoming '" << ego->getID() << "\n";
}
#endif
continue;
}
if (foe->isStopped() && foe->getNextStopParameter()->join == ego->getID()) {
#ifdef DEBUG_SIGNALSTATE
if (gDebugFlag4) {
std::cout << " ignore " << foe->getID() << " for which ego is join-target\n";
}
#endif
continue;
}
Expand Down

0 comments on commit f447c3f

Please sign in to comment.