From cceb3473be49d7f7105c668aff5f9684976f6011 Mon Sep 17 00:00:00 2001 From: Axwabo Date: Sat, 11 Feb 2023 22:22:28 +0100 Subject: [PATCH] fix success --- DeathLog/DeathLog.csproj | 1 + DeathLog/LogHandler.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/DeathLog/DeathLog.csproj b/DeathLog/DeathLog.csproj index 44b67c5..7172e7b 100644 --- a/DeathLog/DeathLog.csproj +++ b/DeathLog/DeathLog.csproj @@ -13,6 +13,7 @@ v4.8 512 10 + MSB3277 x64 diff --git a/DeathLog/LogHandler.cs b/DeathLog/LogHandler.cs index 51ba27c..c5c7eed 100644 --- a/DeathLog/LogHandler.cs +++ b/DeathLog/LogHandler.cs @@ -53,7 +53,7 @@ public static class LogHandler { GetKillMessage(handler, canBeKos, hasWeaponEquipped, isCuffed, carriesWeapon, PlayerRoleLoader.TryGetRoleTemplate(attackerRole, out FpcStandardScp _)), GetKillerStatus(attacker), GetVictimStatus(victim) - ), !isCuffed && (!canBeKos || !hasWeaponEquipped), permissions); + ), !isCuffed && (!canBeKos || hasWeaponEquipped), permissions); } private static void Log(string msg, bool success, PlayerPermissions playerPermissions) {