From 09b5785d126fea1721712b796ed014bb3db532e6 Mon Sep 17 00:00:00 2001 From: Mac_Slash Date: Wed, 29 Apr 2020 01:25:06 +0200 Subject: [PATCH] PilotJob Range von Checkpoints kleiner --- ReallifeGamemode.Server/Job/PilotJob.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ReallifeGamemode.Server/Job/PilotJob.cs b/ReallifeGamemode.Server/Job/PilotJob.cs index 95137a0a..b3551994 100644 --- a/ReallifeGamemode.Server/Job/PilotJob.cs +++ b/ReallifeGamemode.Server/Job/PilotJob.cs @@ -146,27 +146,27 @@ namespace ReallifeGamemode.Server.Job { if (type == "Route 1") { - CheckPointHandle.StartCheckPointRoute(player, Route1, 0, 6, 40, 40, "pilotJob"); //6, 23, 25, 26, 27, 28 + CheckPointHandle.StartCheckPointRoute(player, Route1, 0, 6, 40, 30, "pilotJob"); //6, 23, 25, 26, 27, 28 } else if (type == "Route 2") { - CheckPointHandle.StartCheckPointRoute(player, Route2, 0, 6, 40, 40, "pilotJob"); + CheckPointHandle.StartCheckPointRoute(player, Route2, 0, 6, 40, 30, "pilotJob"); } else if (type == "Route 3") { - CheckPointHandle.StartCheckPointRoute(player, Route3, 0, 6, 40, 40, "pilotJob"); + CheckPointHandle.StartCheckPointRoute(player, Route3, 0, 6, 40, 30, "pilotJob"); } else if (type == "Route 4") { - CheckPointHandle.StartCheckPointRoute(player, Route4, 0, 6, 40, 40, "pilotJob"); + CheckPointHandle.StartCheckPointRoute(player, Route4, 0, 6, 40, 30, "pilotJob"); } else if (type == "Route 5") { - CheckPointHandle.StartCheckPointRoute(player, Route5, 0, 6, 40, 40, "pilotJob"); + CheckPointHandle.StartCheckPointRoute(player, Route5, 0, 6, 40, 30, "pilotJob"); } else if (type == "Route 6") { - CheckPointHandle.StartCheckPointRoute(player, Route6, 0, 6, 40, 40, "pilotJob"); + CheckPointHandle.StartCheckPointRoute(player, Route6, 0, 6, 40, 30, "pilotJob"); } } }