Skip to content

Commit

Permalink
Version Increment
Browse files Browse the repository at this point in the history
  • Loading branch information
PeachesMLG committed Jun 10, 2024
1 parent ea902a8 commit 66f85c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.iridium"
version = "2.5.3"
version = "2.5.4"
description = "IridiumTeams"

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public HelpCommand(List<String> args, String description, String syntax, String
@Override
public boolean execute(CommandSender sender, String[] args, IridiumTeams<T, U> iridiumTeams) {
List<Command<T, U>> availableCommands = iridiumTeams.getCommandManager().getCommands().stream()
.filter(command -> !command.isSuperSecretCommand())
.filter(command -> sender.hasPermission(command.permission) || command.permission.isEmpty())
.collect(Collectors.toList());

Expand Down

0 comments on commit 66f85c7

Please sign in to comment.