We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a8bff0 commit fe7a071Copy full SHA for fe7a071
src/main/java/com/datasiqn/commandcore/CommandCore.java
@@ -164,6 +164,7 @@ public static CommandCore getInstance() {
164
constructor.setAccessible(true);
165
command = constructor.newInstance(rootCommand, plugin);
166
command.setAliases(options.getAliases());
167
+ command.setDescription("Base plugin command");
168
commandMap.register(rootCommand, plugin.getName(), command);
169
} catch (NoSuchFieldException | IllegalAccessException | InvocationTargetException |
170
InstantiationException | NoSuchMethodException e) {
0 commit comments