From 3481cd2d50b4ebfb79d7157fad597455c8665fb7 Mon Sep 17 00:00:00 2001 From: InvalidArgument3 Date: Sat, 7 Dec 2024 04:28:57 -0600 Subject: [PATCH] ringway 1 million km --- Ringway/Data/Scripts/TeleportGateway/TeleportGateway.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ringway/Data/Scripts/TeleportGateway/TeleportGateway.cs b/Ringway/Data/Scripts/TeleportGateway/TeleportGateway.cs index 7b0547d..a30b8b4 100644 --- a/Ringway/Data/Scripts/TeleportGateway/TeleportGateway.cs +++ b/Ringway/Data/Scripts/TeleportGateway/TeleportGateway.cs @@ -50,7 +50,7 @@ public class TeleportGateway : MyGameLogicComponent { private const float POWER_PER_100KM = 1.0f; // 1 MWh per 100km private const float MIN_TELEPORT_CHARGE_PERCENTAGE = 0.1f; // 10% charge threshold - private const double MAX_TELEPORT_DISTANCE = 100000.0 * 1000; // 100,000 km in meters + private const double MAX_TELEPORT_DISTANCE = 1000000.0 * 1000; // 100,000,000 km in meters private static MyParticleEffect teleportEffect; static TeleportGateway() {