Skip to content

Commit

Permalink
[PvP Leaderboard] Fixed a minor typo in the grief-killed log line
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteFang5 committed Jul 30, 2022
1 parent 036fd5c commit 76fa7e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PvPLeaderboard/Systems/PvPLeaderboardSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private static void OnVampireDowned(Entity killer, Entity victim)

if(diff >= PvPLeaderboardConfig.PvPLeaderboardLevelDifference.Value)
{
Utils.Logger.LogMessage($"Vampire {killerUser.CharacterName} (Lv: {killerLevel}; Current Lv: {HighestGearScoreSystem.GetCurrentGearScore(killer, entityManager)}) has grief-killed{victimUser.CharacterName} (Lv {victimLevel}; Current Lv: {HighestGearScoreSystem.GetCurrentGearScore(killer, entityManager)})!");
Utils.Logger.LogMessage($"Vampire {killerUser.CharacterName} (Lv: {killerLevel}; Current Lv: {HighestGearScoreSystem.GetCurrentGearScore(killer, entityManager)}) has grief-killed {victimUser.CharacterName} (Lv {victimLevel}; Current Lv: {HighestGearScoreSystem.GetCurrentGearScore(killer, entityManager)})!");
if(PvPLeaderboardConfig.PvPLeaderboardAnnounceLowLevelKill.Value)
{
ServerChatUtils.SendSystemMessageToAllClients(entityManager, $"Vampire <color=#ffffff>{killerUser.CharacterName}</color> (Lv {killerLevel}) has grief-killed <color=#ffffff>{victimUser.CharacterName}</color> (Lv {victimLevel})!");
Expand Down

0 comments on commit 76fa7e1

Please sign in to comment.