From 626b7fd02875a8a98e67cba272b2156942b339d0 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Tue, 28 Jan 2025 22:10:05 -0600 Subject: [PATCH] Add comment to CheckLosCheat/CheckLosCheatExempt --- zone/mob.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/mob.h b/zone/mob.h index b0444d4a8..83ba2b024 100644 --- a/zone/mob.h +++ b/zone/mob.h @@ -872,8 +872,8 @@ public: static bool CheckLosFN(glm::vec3 posWatcher, float sizeWatcher, glm::vec3 posTarget, float sizeTarget); virtual bool CheckWaterLoS(Mob* m); bool CheckPositioningLosFN(Mob* other, float posX, float posY, float posZ); - bool CheckLosCheat(Mob* other); - bool CheckLosCheatExempt(Mob* other); + bool CheckLosCheat(Mob* other); //door skipping checks for LoS + bool CheckLosCheatExempt(Mob* other); //exemptions to bypass los bool DoLosChecks(Mob* other); bool TargetValidation(Mob* other); inline void SetLastLosState(bool value) { last_los_check = value; }