für siga

This commit is contained in:
2019-09-22 17:27:48 +02:00
parent f99178bf25
commit fd3b9b9ebc
8 changed files with 197 additions and 29 deletions

View File

@@ -75,13 +75,13 @@ namespace ReallifeGamemode.Server.Job
{
if (type == "Kurz 1")
{
CheckPointHandle.StartCheckPointRoute(player, Route1, 3000, 1);
CheckPointHandle.StartCheckPointRoute(player, Route1, 3000, 1, "");
} else if (type == "Kurz 2")
{
CheckPointHandle.StartCheckPointRoute(player, Route2, 3000, 1);
CheckPointHandle.StartCheckPointRoute(player, Route2, 3000, 1, "");
} else if (type == "Mittel 1")
{
CheckPointHandle.StartCheckPointRoute(player, Route3, 3000, 1);
CheckPointHandle.StartCheckPointRoute(player, Route3, 3000, 1, "");
}
}

View File

@@ -28,7 +28,7 @@ namespace ReallifeGamemode.Server.Job
private void PilotJob_JobStart(Client player)
{
CheckPointHandle.StartCheckPointRoute(player, Route1, 0, 6);
CheckPointHandle.StartCheckPointRoute(player, Route1, 0, 6, "");
}
}
}