Forgot to update the versioned file.
This commit is contained in:
mrSkortch 2020-07-24 18:23:26 -06:00
parent de4b4e0d0d
commit 14843a5690

View File

@ -35,7 +35,7 @@ mist = {}
-- don't change these -- don't change these
mist.majorVersion = 4 mist.majorVersion = 4
mist.minorVersion = 4 mist.minorVersion = 4
mist.build = 87 mist.build = 88
-- forward declaration of log shorthand -- forward declaration of log shorthand
local log local log
@ -630,7 +630,7 @@ do -- the main scope
newObject = StaticObject.getByName(event) newObject = StaticObject.getByName(event)
-- log:info('its static') -- log:info('its static')
else else
log:warn('$1 is not a Unit or Static Object. This should not be possible', event) log:warn('$1 is not a Group or Static Object. This should not be possible. Sent category is: $2', event, objType)
return false return false
end end
@ -837,7 +837,7 @@ do -- the main scope
-- dbLog:info('No Mismatch') -- dbLog:info('No Mismatch')
end end
else else
--env.info('getByName failed') dbLog:warn('$1 : Group was not accessible', name)
end end
end end
end end
@ -1555,10 +1555,12 @@ do -- the main scope
while i <= #scheduledTasks do while i <= #scheduledTasks do
if scheduledTasks[i].id == id then if scheduledTasks[i].id == id then
table.remove(scheduledTasks, i) table.remove(scheduledTasks, i)
return true
else else
i = i + 1 i = i + 1
end end
end end
return false
end end
--- Registers an event handler. --- Registers an event handler.