From 966ab238b7ea5438067fff5f59f348d361aca45e Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 20 Feb 2018 09:07:31 +1100 Subject: [PATCH] fix plugins not loading with /pload when specified to not autoload on server start --- MCGalaxy/Plugins/PluginManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Plugins/PluginManager.cs b/MCGalaxy/Plugins/PluginManager.cs index 89e39cb6b..e01e503bb 100644 --- a/MCGalaxy/Plugins/PluginManager.cs +++ b/MCGalaxy/Plugins/PluginManager.cs @@ -85,7 +85,7 @@ namespace MCGalaxy { Plugin.all.Add(instance); - if (instance.LoadAtStartup) { + if (instance.LoadAtStartup || !startup) { instance.Load(startup); Logger.Log(LogType.SystemActivity, "Plugin: {0} loaded...build: {1}", instance.name, instance.build); } else {