Skip to content

Commit

Permalink
Merge branch 'nightly' into renovate/unirest
Browse files Browse the repository at this point in the history
  • Loading branch information
0utplay authored Mar 20, 2024
2 parents 6a4edb6 + 7f8f63e commit c45f8d3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import cloud.commandframework.annotations.Flag;
import cloud.commandframework.annotations.parsers.Parser;
import cloud.commandframework.annotations.specifier.Greedy;
import cloud.commandframework.annotations.specifier.Quoted;
import cloud.commandframework.annotations.suggestions.Suggestions;
import cloud.commandframework.context.CommandContext;
import eu.cloudnetservice.common.Named;
Expand Down Expand Up @@ -217,7 +218,7 @@ public void deletePlayer(
public void kickPlayer(
@NonNull CommandSource source,
@NonNull @Argument("player") CloudPlayer player,
@Nullable @Greedy @Argument("reason") String reason,
@Nullable @Quoted @Argument("reason") String reason,
@Flag("force") boolean force
) {
var reasonComponent = reason == null
Expand Down

0 comments on commit c45f8d3

Please sign in to comment.