Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Making commands

See the Minestom docs BUT intead of extending net.minestom.server.command.builder.Command you want to extend dev.sulfurmc.Sulfur.Utils.SulfurCommand and you need to register it the same way as listeners:

public void registerCommands() {
new YourCommand();
}