From 4d1395e522b1ad47b4d6695345947980119933f9 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Fri, 10 May 2024 14:20:42 -0700 Subject: [PATCH] Update CheatDetection.cpp (#1559) --- dGame/dUtilities/CheatDetection.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dGame/dUtilities/CheatDetection.cpp b/dGame/dUtilities/CheatDetection.cpp index a87157a18..504b3d538 100644 --- a/dGame/dUtilities/CheatDetection.cpp +++ b/dGame/dUtilities/CheatDetection.cpp @@ -130,12 +130,6 @@ bool CheatDetection::VerifyLwoobjidIsSender(const LWOOBJID& id, const SystemAddr // This will be true if the player does not possess the entity they are trying to send a packet as. // or if the user does not own the character they are trying to send a packet as. - if (invalidPacket) { - va_list args; - va_start(args, messageIfNotSender); - LogAndSaveFailedAntiCheatCheck(id, sysAddr, checkType, messageIfNotSender, args); - va_end(args); - } return !invalidPacket; }