Merge pull request #198 from FlightControl-Master/Bugfix-132nd

Bugfix 132nd, second fix from entropy fixing fireatpoint
This commit is contained in:
Sven Van de Velde 2017-01-18 19:43:07 +01:00 committed by GitHub
commit 45d124065b
2 changed files with 8 additions and 0 deletions

View File

@ -956,6 +956,8 @@ function CONTROLLABLE:TaskFireAtPoint( Vec2, Radius )
-- params = {
-- point = Vec2,
-- radius = Distance,
-- expendQty = number,
-- expendQtyEnabled = boolean,
-- }
-- }
@ -964,6 +966,8 @@ function CONTROLLABLE:TaskFireAtPoint( Vec2, Radius )
params = {
point = Vec2,
radius = Radius,
expendQty = 100, -- added both parameters to override the bug the apparent custome value of expendQty = 1 and expendQty = true
expendQtyEnabled = false, -- -- added both parameters to override the bug the apparent custome value of expendQty = 1 and expendQty = true
}
}

View File

@ -13466,6 +13466,8 @@ function CONTROLLABLE:TaskFireAtPoint( Vec2, Radius )
-- params = {
-- point = Vec2,
-- radius = Distance,
-- expendQty = number,
-- expendQtyEnabled = boolean,
-- }
-- }
@ -13474,6 +13476,8 @@ function CONTROLLABLE:TaskFireAtPoint( Vec2, Radius )
params = {
point = Vec2,
radius = Radius,
expendQty = 100, -- added both parameters to override the bug the apparent custome value of expendQty = 1 and expendQty = true
expendQtyEnabled = false, -- -- added both parameters to override the bug the apparent custome value of expendQty = 1 and expendQty = true
}
}