fix plugins not loading with /pload when specified to not autoload on server start

This commit is contained in:
UnknownShadow200 2018-02-20 09:07:31 +11:00
parent 916b9d8fd4
commit 966ab238b7

View File

@ -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 {