Skip to content

Commit

Permalink
added vehicle stop actType to stopinfo. refs #36
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Nov 8, 2021
1 parent 750fa14 commit 76c0150
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/guisim/GUIVehicle.cpp
Expand Up @@ -863,6 +863,9 @@ GUIVehicle::getStopInfo() const {
} else {
result += ", duration=" + time2string(myStops.front().duration);
}
if (myStops.front().pars.actType != "") {
result += ", actType=" + myStops.front().pars.actType;
}
return result;
}

Expand Down

0 comments on commit 76c0150

Please sign in to comment.