From 427f6ba12a99dcfed2a84032d84ee6dd65a7d41e Mon Sep 17 00:00:00 2001
From: Stefanos Doumpoulakis <dubulak@gmail.com>
Date: Fri, 24 Nov 2023 15:22:01 +0200
Subject: [PATCH] fix #203: IHPC gearbox no longer considered AT

Decouple zero traction interruption and automatic gearbox
characterization for IHPC.
---
 VectoCommon/VectoCommon/Models/GearboxType.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VectoCommon/VectoCommon/Models/GearboxType.cs b/VectoCommon/VectoCommon/Models/GearboxType.cs
index dd7b6a8524..e32df236c0 100644
--- a/VectoCommon/VectoCommon/Models/GearboxType.cs
+++ b/VectoCommon/VectoCommon/Models/GearboxType.cs
@@ -70,7 +70,7 @@ namespace TUGraz.VectoCommon.Models
 
 		[DebuggerStepThrough]
 		public static bool AutomaticTransmission(this GearboxType type) =>
-			type == GearboxType.ATPowerSplit || type == GearboxType.ATSerial || type == GearboxType.APTN || type == GearboxType.IHPC;
+			type == GearboxType.ATPowerSplit || type == GearboxType.ATSerial || type == GearboxType.APTN;
 
 		[DebuggerStepThrough]
 		public static bool ManualTransmission(this GearboxType type) =>
-- 
GitLab