Added progress bar

This commit is contained in:
Cooldude2606
2019-08-31 17:46:19 +01:00
parent b385cd64a5
commit 129610679e
99 changed files with 903 additions and 97 deletions

View File

@@ -174,7 +174,7 @@ function Store.update(location,key,update_callback,...)
local rtn
if update_callback and type(update_callback) == 'function' then
if args then
rtn = udpate_callback(value,key,unpack(args))
rtn = update_callback(value,key,unpack(args))
else
rtn = update_callback(value,key,...)
end