Improved console messages when compiling didn't happen, egg crack graphics are now found in the same way as egg graphics

This commit is contained in:
Maruno17
2022-09-10 19:38:21 +01:00
parent dcba641a86
commit 662d023ff5
4 changed files with 17 additions and 7 deletions

View File

@@ -627,7 +627,11 @@ module PluginManager
# get the order of plugins to interpret
order, plugins = self.getPluginOrder
# compile if necessary
self.compilePlugins(order, plugins) if self.needCompiling?(order, plugins)
if self.needCompiling?(order, plugins)
self.compilePlugins(order, plugins)
else
Console.echoln_li "Plugins were not compiled."
end
# load plugins
scripts = load_data("Data/PluginScripts.rxdata")
echoed_plugins = []