From 14843a56908ef25a860a1ed08a357e5549894e51 Mon Sep 17 00:00:00 2001 From: mrSkortch Date: Fri, 24 Jul 2020 18:23:26 -0600 Subject: [PATCH] 4_4_88 Forgot to update the versioned file. --- mist_4_4_87.lua => mist_4_4_88.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) rename mist_4_4_87.lua => mist_4_4_88.lua (99%) diff --git a/mist_4_4_87.lua b/mist_4_4_88.lua similarity index 99% rename from mist_4_4_87.lua rename to mist_4_4_88.lua index 9760cb8..3034514 100644 --- a/mist_4_4_87.lua +++ b/mist_4_4_88.lua @@ -35,7 +35,7 @@ mist = {} -- don't change these mist.majorVersion = 4 mist.minorVersion = 4 -mist.build = 87 +mist.build = 88 -- forward declaration of log shorthand local log @@ -630,7 +630,7 @@ do -- the main scope newObject = StaticObject.getByName(event) -- log:info('its static') 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 end @@ -837,7 +837,7 @@ do -- the main scope -- dbLog:info('No Mismatch') end else - --env.info('getByName failed') + dbLog:warn('$1 : Group was not accessible', name) end end end @@ -1555,10 +1555,12 @@ do -- the main scope while i <= #scheduledTasks do if scheduledTasks[i].id == id then table.remove(scheduledTasks, i) + return true else i = i + 1 end end + return false end --- Registers an event handler.