Moved tuning garages to database, moved vehicle distance driven counter timer from update event to timer

This commit is contained in:
hydrant
2019-04-12 19:03:23 +02:00
parent 5749b15151
commit 434e19e6ea
10 changed files with 1194 additions and 46 deletions

View File

@@ -704,6 +704,22 @@ namespace ReallifeGamemode.Migrations
b.HasDiscriminator<string>("Discriminator").HasValue("ServerVehicle");
});
modelBuilder.Entity("ReallifeGamemode.Server.Entities.TuningGarage", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<float>("X");
b.Property<float>("Y");
b.Property<float>("Z");
b.HasKey("Id");
b.ToTable("TuningGarages");
});
modelBuilder.Entity("ReallifeGamemode.Server.Entities.User", b =>
{
b.Property<int>("Id")