Merge branch 'feature/faction-system' into develop

This commit is contained in:
hydrant
2018-09-28 17:52:09 +02:00
24 changed files with 720 additions and 10 deletions

View File

@@ -1,7 +1,9 @@
using System;
using System.Linq;
using GTANetworkAPI;
using Microsoft.EntityFrameworkCore;
using reallife_gamemode.Model;
using reallife_gamemode.Server.Entities;
/**
* @overview Life of German Reallife - Main Class (Main.cs)
@@ -26,6 +28,9 @@ namespace reallife_gamemode
using (var context = new DatabaseContext())
{
context.Bans.FirstOrDefault();
context.Factions.FirstOrDefault();
context.Users.FirstOrDefault();
context.SaveChanges();
}
}