Fix for Delta, hopefully solves error in Event Handling.

This commit is contained in:
FlightControl
2017-02-14 16:55:02 +01:00
parent fcf011a6f4
commit 3473076814
94 changed files with 11 additions and 11 deletions

View File

@@ -848,7 +848,7 @@ function TASK:onenterAssigned( From, Event, To )
self:E("Task Assigned")
self:MessageToGroups( "Task " .. self:GetName() .. " has been assigned to your group." )
self:GetMission():__Start()
self:GetMission():__Start( 1 )
end
@@ -864,7 +864,7 @@ function TASK:onenterSuccess( From, Event, To )
self:MessageToGroups( "Task " .. self:GetName() .. " is successful! Good job!" )
self:UnAssignFromGroups()
self:GetMission():__Complete()
self:GetMission():__Complete( 1 )
end