diff --git a/PluginCommandManager.cs b/PluginCommandManager.cs index aef1279..02c4d09 100644 --- a/PluginCommandManager.cs +++ b/PluginCommandManager.cs @@ -21,7 +21,7 @@ public PluginCommandManager(THost host, DalamudPluginInterface pluginInterface) this.pluginInterface = pluginInterface; this.host = host; - this.pluginCommands = host.GetType().GetMethods(BindingFlags.NonPublic | BindingFlags.Static) + this.pluginCommands = host.GetType().GetMethods(BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance) .Where(method => method.GetCustomAttribute() != null) .SelectMany(GetCommandInfoTuple) .ToArray();