Skip to content

Commit

Permalink
fix: visible player names being massacred by a missing !
Browse files Browse the repository at this point in the history
Signed-off-by: Thatsmusic99 <25277367+thatsmusic99@users.noreply.github.com>
  • Loading branch information
Thatsmusic99 committed Jul 13, 2024
1 parent c6d1983 commit 5d23e69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private void sendDropdownForm(@NotNull String command, @NotNull Collection<Strin
player -> {
final var atPlayer = ATPlayer.getPlayer(player);
return !atPlayer.hasBlocked(getPlayer())
&& this.hasBlocked(atPlayer.uuid());
&& !this.hasBlocked(atPlayer.uuid());
})
.map(Player::getName)
.toList();
Expand Down

0 comments on commit 5d23e69

Please sign in to comment.