testen Medic

This commit is contained in:
VegaZ
2021-04-05 17:34:21 +02:00
parent 7b739ac09a
commit 43f2b912f4
2 changed files with 4 additions and 2 deletions

View File

@@ -87,11 +87,13 @@ namespace ReallifeGamemode.Server.Factions.Medic
if(decision == false)
{
activeDecision.dMedic.SendNotification(activeDecision.dTarget.Name + " hat den Heal ~r~abgelehnt",false);
activeDecision.dTarget.SendNotification("Du hast den Heal ~r~abgelehnt", false);
return;
}
else
{
activeDecision.dMedic.SendNotification(activeDecision.dTarget.Name + " hat den Heal ~g~akzeptiert", false);
activeDecision.dTarget.SendNotification("Du hast den Heal ~g~akzeptiert", false);
using var dbContext = new DatabaseContext();
{
User targetUser = target.GetUser(dbContext);