Skip to content

1.3.3

Compare
Choose a tag to compare
@Despical Despical released this 01 Feb 13:18
· 118 commits to main since this release

1.3.3 Release Notes

Example Command with Cooldown Annotation

	@Command(
		name = "test"
	)
	@Cooldown(
		cooldown = 10,
		timeUnit = TimeUnit.SECONDS, // default is seconds
		bypassPerm = "cooldown.bypass",
		overrideConsole = true
	)
	public void testCommand(CommandArguments arguments) {
		arguments.sendMessage("Test message.");
	}

Full Changelog: 1.3.2...1.3.3