temp fix for inventory

This commit is contained in:
Siga
2020-02-03 18:27:33 +01:00
parent 154b0ca0fe
commit f19564266e
2 changed files with 12 additions and 4 deletions

View File

@@ -59,6 +59,13 @@ namespace ReallifeGamemode.Server.Events
return;
}
}
else if (sV is UserVehicle uV)
{
if (uV.UserId != u.Id)
{
return;
}
}
}
VehicleStreaming.SetEngineState(v, !state);
}