Continued CEF browser for rank managment

This commit is contained in:
Lennart Kampshoff
2018-09-23 23:11:22 +02:00
parent d9789b7525
commit f162f2323c
7 changed files with 22 additions and 22 deletions

View File

@@ -77,7 +77,7 @@ namespace reallife_gamemode.Server.Commands
using(var context = new DatabaseContext())
{
List<FactionRank> factionRanks = context.FactionRanks.ToList().FindAll(r => r.FactionId == f.Id);
string json = JsonConvert.SerializeObject(factionRanks, Formatting.Indented);
string json = JsonConvert.SerializeObject(factionRanks, Formatting.None);
player.TriggerEvent("manageFactionRanks", json);
}
}