removed DEUG message. Finished cause of Death message

This commit is contained in:
Lukas Moungos
2019-12-14 16:29:08 +01:00
parent be810a0024
commit 4ff480e491
2 changed files with 3 additions and 4 deletions

View File

@@ -26,8 +26,8 @@ namespace ReallifeGamemode.Server.Events
player.SetData("isDead", true);
//TODO: Zum Full Release entfernen
ChatService.SendMessage(player, "Du bist durch " + killer.Name + " gestorben: " + Managers.WeaponManager.GetCauseOfDeathByHash(reason));
ChatService.SendMessage(player, "Du bist durch " + killer.Name + " gestorben: " + reason.ToString());
int? killerId;
float killerPosX;
float killerPosY;
@@ -59,7 +59,6 @@ namespace ReallifeGamemode.Server.Events
Autowanted.Check_AutoWanted(killer, player);
string message = "~y~[HINWEIS]: " + killer.Name + " hat " + player.Name + " getötet (" + Managers.WeaponManager.GetCauseOfDeathByHash(reason)+ ")";
ChatService.BroadcastAdmin(message, AdminLevel.ADMIN);
ChatService.Broadcast("" + reason.ToString());
}
}