Closed
Description
Documentation URL
What the documentation currently says
Proposed fix
(Double reference to "normalcommandexecutors3" in Examples.java. Needs renaming and re-linking):
//Create our command
CommandAPICommand("broadcastmsg")
.withArguments(GreedyStringArgument("message")) // The arguments
.withAliases("broadcast", "broadcastmessage") // Command aliases
.withPermission(CommandPermission.OP) // Required permissions
.executes(CommandExecutor { sender, args ->
String message = (String) args[0]
Bukkit.getServer().broadcastMessage(message)
})
.register()