From a72d3afd1c43565a3d7eb2b5c0565a72ff7dc577 Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Mon, 22 Dec 2025 14:09:37 +0100 Subject: [PATCH] xx --- Moose Development/Moose/Ops/Intelligence.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Moose Development/Moose/Ops/Intelligence.lua b/Moose Development/Moose/Ops/Intelligence.lua index 278793f07..14882c67e 100644 --- a/Moose Development/Moose/Ops/Intelligence.lua +++ b/Moose Development/Moose/Ops/Intelligence.lua @@ -992,7 +992,8 @@ function INTEL:UpdateIntel() local zone=_zone --Core.Zone#ZONE if unit:IsInZone(zone) then local debugtext = "Corridorzone Check for unit "..unit:GetName().."\n" - debugtext = debugtext .. string.format("IsAir %s | Alt %dm | Floor %dm | Ceil %dm",tostring(unit:IsAir()),tonumber(unit:GetAltitude()),tonumber(self.corridorfloor),tonumber(self.corridorceiling)) + debugtext = debugtext .. string.format("IsAir %s | Alt %dft | Floor %dft | Ceil %dft",tostring(unit:IsAir()),tonumber(UTILS.MetersToFeet(unit:GetAltitude())), + tonumber(UTILS.MetersToFeet(self.corridorfloor)),tonumber(UTILS.MetersToFeet(self.corridorceiling))) MESSAGE:New(debugtext,15,"INTEL"):ToAllIf(self.verbose>1):ToLogIf(self.verbose>1) if unit:IsAir() and (self.corridorfloor ~= nil or self.corridorceiling ~= nil) then local alt = unit:GetAltitude()