From 9e9105080bf3f68c606065a72ad3cf57c20c6098 Mon Sep 17 00:00:00 2001 From: M'Dic Date: Wed, 17 Aug 2022 22:48:27 -0400 Subject: [PATCH] Fix (typo): nake workflow happy --- src/AnticheatMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 4567340..1dc50fd 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -382,7 +382,7 @@ void AnticheatMgr::TeleportHackDetection(Player* player, MovementInfo movementIn float yDiff = fabs(lastY - newY); float zDiff = fabs(lastZ - newZ); - if (player->IsFalling() || player->IsFalling() && player->IsMounted()) + if (player->IsFalling() || (player->IsFalling() && player->IsMounted())) return; if (player->duel)