#EASYGCICAP - Fix trying to set corridor limits in feet when they are meters internally

This commit is contained in:
Applevangelist
2026-01-09 15:35:19 +01:00
parent 6b3148ec31
commit ce711a3d0c
+1 -1
View File
@@ -1626,7 +1626,7 @@ function EASYGCICAP:_StartIntel()
if self.usecorridors == true then
BlueIntel:SetCorridorZones(self.corridorzones)
if self.corridorfloor or self.corridorceiling then
BlueIntel:SetCorridorLimitsFeet(self.corridorfloor,self.corridorceiling)
BlueIntel:SetCorridorLimits(self.corridorfloor,self.corridorceiling)
end
end