Added in Config Postload (#1336)
* Added in an `onload` variable to configs which is called by the plugin loader. * Used appropriate parameter. * Fixed tabbing.
This commit is contained in:
parent
12bae1ec95
commit
4682092b8d
|
@ -1010,7 +1010,7 @@ function core.load_plugins()
|
||||||
table.insert(list, plugin.file)
|
table.insert(list, plugin.file)
|
||||||
elseif config.plugins[plugin.name] ~= false then
|
elseif config.plugins[plugin.name] ~= false then
|
||||||
local start = system.get_time()
|
local start = system.get_time()
|
||||||
local ok = core.try(require, "plugins." .. plugin.name)
|
local ok, loaded_plugin = core.try(require, "plugins." .. plugin.name)
|
||||||
if ok then
|
if ok then
|
||||||
core.log_quiet(
|
core.log_quiet(
|
||||||
"Loaded plugin %q from %s in %.1fms",
|
"Loaded plugin %q from %s in %.1fms",
|
||||||
|
@ -1021,6 +1021,8 @@ function core.load_plugins()
|
||||||
end
|
end
|
||||||
if not ok then
|
if not ok then
|
||||||
no_errors = false
|
no_errors = false
|
||||||
|
elseif config.plugins[plugin.name].onload then
|
||||||
|
core.try(config.plugins[plugin.name].onload, loaded_plugin)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue