From 78db2cb7eb99f64420f2a529839bae5e0696a68b Mon Sep 17 00:00:00 2001
From: Michael Krisper <michael.krisper@tugraz.at>
Date: Mon, 20 Dec 2021 17:13:44 +0100
Subject: [PATCH] PowertrainBuilder DummyEngineInfo CombustionEngineOn: Set
 default again to false (was wrongly reverted in 6529a9e5a)

---
 VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
index ff91652ccb..7333284a68 100644
--- a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
+++ b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
@@ -1123,7 +1123,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 
 		#region Implementation of IEngineControl
 
-		public bool CombustionEngineOn { get; set; }
+		public bool CombustionEngineOn { get => false; set { } }
 
 		#endregion
 	}
-- 
GitLab