Skip to content

Commit

Permalink
Fix as info reselling producing incorrect output
Browse files Browse the repository at this point in the history
  • Loading branch information
md5sha256 committed Apr 2, 2024
1 parent c1572eb commit fbef000
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private void processOtherFilters(@Nonnull CommandContext<CommandSender> context,
case RENTED -> fileManager.getRentsRef().stream().filter(RentRegion::isRented);
case FORRENT -> fileManager.getRentsRef().stream().filter(RentRegion::isAvailable);
case FORSALE -> fileManager.getBuysRef().stream().filter(BuyRegion::isAvailable);
case RESELLING -> fileManager.getBuysRef().stream().filter(Predicate.not(BuyRegion::isInResellingMode));
case RESELLING -> fileManager.getBuysRef().stream().filter(BuyRegion::isInResellingMode);
case NOGROUP -> {
List<GeneralRegion> regions = new LinkedList<>(fileManager.getRegions());
for (RegionGroup group : fileManager.getGroups()) {
Expand Down

0 comments on commit fbef000

Please sign in to comment.