This commit is contained in:
Mister_Nebula 2020-08-24 16:01:33 +01:00
parent 16ae1d0a63
commit cd417064e8
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ namespace QSB.DeathSync
{ {
var playerName = PlayerRegistry.GetPlayer(message.AboutId).Name; var playerName = PlayerRegistry.GetPlayer(message.AboutId).Name;
var deathMessage = Necronomicon.GetPhrase(message.DeathType); var deathMessage = Necronomicon.GetPhrase(message.DeathType);
DebugLog.ToAll(string.Format(deathMessage, playerName).ToUpper()); DebugLog.ToAll(string.Format(deathMessage, playerName));
} }
public override void OnReceiveLocal(PlayerDeathMessage message) => OnReceiveRemote(message); public override void OnReceiveLocal(PlayerDeathMessage message) => OnReceiveRemote(message);

View File

@ -18,7 +18,7 @@ namespace QSB.Utility
{ {
return; return;
} }
var data = new NotificationData(NotificationTarget.Player, message); var data = new NotificationData(NotificationTarget.Player, message.ToUpper());
NotificationManager.SharedInstance.PostNotification(data); NotificationManager.SharedInstance.PostNotification(data);
} }