SET_GROUP is working!

This commit is contained in:
FlightControl
2016-06-07 12:23:24 +02:00
parent afb71ecd26
commit 92e9f57b66
22 changed files with 194 additions and 69 deletions

View File

@@ -121,7 +121,7 @@ function SCHEDULER:_Scheduler()
self:T( { Status, Result } )
if Status and ( ( not Result ) or ( Result and Result ~= false ) ) then
if Status and ( ( not Result == nil ) or ( Result and Result ~= false ) ) then
if self.Repeat and ( not self.StopSeconds or ( self.StopSeconds and timer.getTime() <= self.StartTime + self.StopSeconds ) ) then
timer.scheduleFunction(
self._Scheduler,