Fix Medic v3

This commit is contained in:
VegaZ
2021-02-08 18:54:35 +01:00
parent 8169ba60f8
commit 98ba18ae1d
2 changed files with 7 additions and 7 deletions

View File

@@ -97,20 +97,20 @@ namespace ReallifeGamemode.Server.Factions.Medic
{
case 0:
ReviveTasks[index].MedicName = victimName;
ReviveTasks[index].MedicName = player.Name;
ChatService.BroadcastFaction("~y~[MEDIC] ~w~" + player.Name + " hat den Reviveauftrag von " + victimName + " angenommen.", new List<int>() { 2 });
target.SendNotification("~w~Sanitäter~g~ " + player.Name + "~w~ eilt zur Rettung.");
break;
case 1:
HealTasks[index].MedicName = victimName;
HealTasks[index].MedicName = player.Name;
ChatService.BroadcastFaction("~y~[MEDIC] ~w~" + player.Name + " hat den Healauftrag von " + victimName + " angenommen.", new List<int>() { 2 });
target.SendNotification("~w~Sanitäter~g~ " + player.Name + "~w~ hat deinen Auftrag angenommen.");
break;
case 2:
FireTasks[index].MedicName = victimName;
FireTasks[index].MedicName = player.Name;
break;
}
}