More fixes

This commit is contained in:
Lukas Moungos
2019-07-20 13:27:03 +02:00
parent 2cfff8579a
commit 3b2918ecc2
4 changed files with 15 additions and 26 deletions

View File

@@ -3,6 +3,7 @@ using ReallifeGamemode.Server.Entities;
using ReallifeGamemode.Server.Extensions;
using ReallifeGamemode.Server.Job;
using ReallifeGamemode.Server.Util;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -103,5 +104,10 @@ namespace ReallifeGamemode.Server.Services
{
job.GetUsersInJob().ForEach(c => ChatService.SendMessage(c, message));
}
internal static void BroadcastFaction(string v, List<int> list)
{
throw new NotImplementedException();
}
}
}