Skip to content

Commit

Permalink
Merge pull request #14 from Jordan2139/master
Browse files Browse the repository at this point in the history
tweak: Add config-update guide to console print
  • Loading branch information
Jordan2139 authored Dec 11, 2024
2 parents 6d89d7d + cf1bcc8 commit 5814c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonorancad/core/plugin_loader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function CheckForPluginUpdate(name)
local configCompare = compareVersions(remote.submoduleConfigs[name].version, plugin.configVersion)
if configCompare.result and not Config.debugMode then
if plugin.enabled then
errorLog(("Submodule Updater: %s has a new configuration version. You should look at the template configuration file (%s_config.dist.lua) and update your configuration before using this submodule."):format(name, name))
errorLog(("Submodule Updater: %s has a new configuration version. You should look at the template configuration file (%s_config.dist.lua) and update your configuration before using this submodule. Guide: https://sonoran.link/config-update"):format(name, name))
Config.plugins[name].enabled = false
Config.plugins[name].disableReason = "outdated config file"
end
Expand Down

0 comments on commit 5814c76

Please sign in to comment.