From e0af3aefe175fc269bfa8185281376cc4802ff64 Mon Sep 17 00:00:00 2001 From: max Date: Thu, 18 Dec 2025 02:32:27 +0100 Subject: [PATCH] added stall rpm --- Car simulation/Engine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Car simulation/Engine.cs b/Car simulation/Engine.cs index 58e024a..508a35c 100644 --- a/Car simulation/Engine.cs +++ b/Car simulation/Engine.cs @@ -90,7 +90,7 @@ public float GetTorqueOutput() { - if (RPM <= 0) return 0; + if (RPM <= 400) return 0; var points = TorqueCurve.OrderBy(p => p.Key).ToList();