This commit is contained in:
Fabian
2021-04-14 21:36:32 +02:00
parent d4bfd37ef3
commit b587c51365
2 changed files with 8 additions and 2 deletions

View File

@@ -63,7 +63,13 @@ namespace ReallifeGamemode.Server.Events
ChatService.BroadcastAdmin("!{#FFFF00}*** " + player.Name + " hat den Server verlassen", AdminLevel.MAPPING);
}
ChatService.BroadcastFaction("Info: " + "Der Auftrag von " + player.Name + " wurde entfernt (Ausgeloggt)", new List<int>() { 2 });
MedicTask task = Medic.ReviveTasks.FirstOrDefault(t => t.Victim == player.Name);
if (task != null)
{
ChatService.BroadcastFaction("Info: Der Auftrag von " + player.Name + " wurde entfernt (Ausgeloggt)", new List<int>() { 2 });
return;
}
/*
TaxiDriverJob taxiJob = JobManager.GetJob<TaxiDriverJob>();