From 405235a59d8e44d2216562b6f8ec783d1c42cc53 Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Wed, 8 Oct 2025 16:01:21 +0200 Subject: [PATCH] #CONTROLLABLE - Fix for double brackets --- Moose Development/Moose/Wrapper/Controllable.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Moose Development/Moose/Wrapper/Controllable.lua b/Moose Development/Moose/Wrapper/Controllable.lua index 2985f7baf..780dc31c8 100644 --- a/Moose Development/Moose/Wrapper/Controllable.lua +++ b/Moose Development/Moose/Wrapper/Controllable.lua @@ -4199,7 +4199,7 @@ function CONTROLLABLE:OptionAAAMinFiringHeightMeters(meters) if DCSControllable then local Controller = self:_GetController() if Controller then - if self:IsGround()() then + if self:IsGround() then self:SetOption(27, meters) end end @@ -4219,7 +4219,7 @@ function CONTROLLABLE:OptionAAAMaxFiringHeightMeters(meters) if DCSControllable then local Controller = self:_GetController() if Controller then - if self:IsGround()() then + if self:IsGround() then self:SetOption(29, meters) end end