vlt fix kfz id bug??

This commit is contained in:
hydrant
2021-04-22 01:15:38 +02:00
parent 57e7455abf
commit 3546ba7f99
6 changed files with 42 additions and 27 deletions

View File

@@ -29,10 +29,12 @@ namespace ReallifeGamemode.Server.Managers
foreach (ServerVehicle veh in dbContext.ServerVehicles)
{
if (!veh.Active) continue;
if (!veh.Active)
{
continue;
}
Vehicle current = veh.Spawn();
TuningManager.ApplyTuningToServerVehicle(veh);
veh.Spawn(null);
}
}
}