diff --git a/PluginBase.cs b/PluginBase.cs index cfc2a8aca..e3c5af65f 100644 --- a/PluginBase.cs +++ b/PluginBase.cs @@ -148,7 +148,7 @@ public class PluginBase !Archives.ContainsKey(plugin.Name.ToLower())) Archives.Add(plugin.Name.ToLower(), plugin); - foreach(Type type in pluginRegister.GetAllArchivePlugins() ?? Enumerable.Empty()) + foreach(Type type in pluginRegister.GetAllByteAddressablePlugins() ?? Enumerable.Empty()) if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[] {}) is IByteAddressableImage plugin && !ByteAddressableImages.ContainsKey(plugin.Name.ToLower()))