From 09bc2da86360915081050ebf6add79501e6f5017 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 26 Jan 2021 00:33:43 +0300 Subject: [PATCH] Limit subwarp speed to 100 for warp considerations --- graphs/data/fitWarpTime/getter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphs/data/fitWarpTime/getter.py b/graphs/data/fitWarpTime/getter.py index 554813b28..549b19523 100644 --- a/graphs/data/fitWarpTime/getter.py +++ b/graphs/data/fitWarpTime/getter.py @@ -55,7 +55,7 @@ def calculate_time_in_warp(max_warp_speed, max_subwarp_speed, warp_dist): k_accel = max_warp_speed k_decel = min(max_warp_speed / 3, 2) - warp_dropout_speed = max_subwarp_speed / 2 + warp_dropout_speed = min(max_subwarp_speed / 2, 100) max_ms_warp_speed = max_warp_speed * AU_METERS accel_dist = AU_METERS