Fixed FireAtPoint bug

This commit is contained in:
entropySG 2017-01-18 19:31:52 +01:00
parent c54c3f275f
commit 62930f39b1
2 changed files with 8 additions and 0 deletions

View File

@ -956,6 +956,8 @@ function CONTROLLABLE:TaskFireAtPoint( Vec2, Radius )
-- params = { -- params = {
-- point = Vec2, -- point = Vec2,
-- radius = Distance, -- radius = Distance,
-- expendQty = number,
-- expendQtyEnabled = boolean,
-- } -- }
-- } -- }
@ -964,6 +966,8 @@ function CONTROLLABLE:TaskFireAtPoint( Vec2, Radius )
params = { params = {
point = Vec2, point = Vec2,
radius = Radius, 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 = { -- params = {
-- point = Vec2, -- point = Vec2,
-- radius = Distance, -- radius = Distance,
-- expendQty = number,
-- expendQtyEnabled = boolean,
-- } -- }
-- } -- }
@ -13474,6 +13476,8 @@ function CONTROLLABLE:TaskFireAtPoint( Vec2, Radius )
params = { params = {
point = Vec2, point = Vec2,
radius = Radius, 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
} }
} }