diff --git a/src/FuzeWorks/Plugins.php b/src/FuzeWorks/Plugins.php index a664ba7..9dee75c 100644 --- a/src/FuzeWorks/Plugins.php +++ b/src/FuzeWorks/Plugins.php @@ -110,7 +110,6 @@ class Plugins public function loadHeadersFromPluginPaths() { // Cycle through all pluginPaths - $this->headers = array(); foreach ($this->pluginPaths as $pluginPath) { // If directory does not exist, skip it @@ -165,7 +164,7 @@ class Plugins protected function loadHeader(iPluginHeader $header): bool { // Fetch the name - $pluginName = $header->getName(); + $pluginName = ucfirst($header->getName()); // Check if the plugin is disabled if (in_array($pluginName, $this->cfg->disabled_plugins))