Fix Bustouren Skill 2/3 Route 3/4

This commit is contained in:
VegaZ
2021-04-04 12:10:24 +02:00
parent db681c170e
commit 64343fc640

View File

@@ -302,7 +302,7 @@ namespace ReallifeGamemode.Server.Job
if ((VehicleHash)veh.Model == VehicleHash.Coach) if ((VehicleHash)veh.Model == VehicleHash.Coach)
{ {
Random rnd = new Random(); Random rnd = new Random();
int rroute = rnd.Next(1, 5); int rroute = rnd.Next(1, 3);
switch (rroute) switch (rroute)
{ {
case 1: case 1:
@@ -340,7 +340,7 @@ namespace ReallifeGamemode.Server.Job
if ((VehicleHash)veh.Model == VehicleHash.Tourbus) if ((VehicleHash)veh.Model == VehicleHash.Tourbus)
{ {
Random rnd = new Random(); Random rnd = new Random();
int rroute = rnd.Next(1, 5); int rroute = rnd.Next(1, 3);
switch (rroute) switch (rroute)
{ {
case 1: case 1: