[AB-63] adding pressF command

fixing not setting the won flag for giveaway participants
This commit is contained in:
Sheldan
2023-12-11 01:26:07 +01:00
parent 4b3038078e
commit 52c805f4ea
32 changed files with 890 additions and 7 deletions

View File

@@ -126,7 +126,8 @@ public class CommandManager implements CommandRegistry {
}
return commandConfiguration
.getParameters()
.stream().filter(parameter -> isParameterRequired(parameter, serverId))
.stream().filter(parameter -> !parameter.getSlashCommandOnly())
.filter(parameter -> isParameterRequired(parameter, serverId))
.count();
}