1
0
mirror of https://github.com/kami-blue/client synced 2025-03-29 15:00:52 +00:00

Removed commands from modules page

This commit is contained in:
Dominika 2020-05-19 15:45:57 -04:00
parent 9417e6ff1d
commit dfe73aabc9
No known key found for this signature in database
GPG Key ID: B4A5A6DCA70F861F

View File

@ -85,17 +85,6 @@ public class GenerateWebsiteCommand extends Command {
});
KamiMod.log.info("\n## Commands (" + KamiMod.getInstance().getCommandManager().getCommands().size() + ")\n");
KamiMod.getInstance().getCommandManager().getCommands().stream().sorted(Comparator.comparing(Command::getLabel)).forEach(command -> {
KamiMod.log.info("<details>");
KamiMod.log.info(" <summary>" + command.getLabel() + "</summary>");
KamiMod.log.info(" <p><ul>");
KamiMod.log.info(" <li>" + command.getDescription() + "<p><i>Aliases: " + command.getAliases() + "</i></p></li>");
KamiMod.log.info(" </ul></p>");
KamiMod.log.info("</details>");
});
sendChatMessage(getLabel().substring(0, 1).toUpperCase() + getLabel().substring(1) + ": Generated website to log file!");
}
}