diff --git a/VectoCore/Models/SimulationComponent/Impl/Driver.cs b/VectoCore/Models/SimulationComponent/Impl/Driver.cs index 8f49ccf2d7483f9c1d72568ef6f79cbc1bad8883..bdf404535790cc8f20e067651581859070c00f8f 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Driver.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Driver.cs @@ -392,6 +392,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl Default(r => { throw new UnexpectedResponseException("DrivingAction Brake: first request.", r); }); if (retVal != null) { + CurrentState.Acceleration = operatingPoint.Acceleration; + CurrentState.dt = operatingPoint.SimulationInterval; + CurrentState.Response = retVal; retVal.Acceleration = operatingPoint.Acceleration; retVal.SimulationInterval = operatingPoint.SimulationInterval; return retVal;