Change Medic Overtime Pay / 4

This commit is contained in:
VegaZ
2021-04-07 22:04:43 +02:00
parent 411e509495
commit 33a16ac174

View File

@@ -259,7 +259,7 @@ namespace ReallifeGamemode.Server.Factions.Medic
using var dbContext = new DatabaseContext();
{
dbContext.Factions.Include(f => f.BankAccount).Where(f => f.Id == 2).First().BankAccount.Balance += Medic.ReviveIncome / 2;
player.SendNotification($"Du hast den Einsatzort erreicht und ~g~{Medic.ReviveIncome / 2}$ ~s~für die Fraktion verdient.");
player.SendNotification($"Du hast den Einsatzort erreicht und ~g~{Medic.ReviveIncome / 4}$ ~s~für die Fraktion verdient.");
Medic.delReviveTaskMedic(player);
dbContext.SaveChanges();
}