Fix Bustouren Skill 2/3 Route 3/4
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user