Skip to content

Commit

Permalink
Adjustments
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph T. McQuigg <[email protected]>
  • Loading branch information
JT122406 committed Dec 26, 2024
1 parent a8c830d commit 07b8c55
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static void makeWanderingTrades() {
BWGWood.WOOD.stream().filter(item -> item.get() instanceof SaplingBlock).forEach(item ->
level1Items.add(createItemsForEmeraldsOffer(item.get(), 5, 1, 8, 1, 0.05f)));
BWGSandSet.getSandSets().forEach(bwgSandSet -> level1Items.add(
createItemsForEmeraldsOffer(bwgSandSet.getSand(), 1, 4, 6, 1, 0.05f)));
createItemsForEmeraldsOffer(bwgSandSet.getSand(), 1, 8, 8, 1, 0.05f)));
BWGBlocks.BLOCKS.stream().filter(block -> block.get() instanceof FlowerBlock).forEach(block ->
level1Items.add(createItemsForEmeraldsOffer(block.get(), 1, 1, 13, 1, 0.05f)));
level1Items.add(createItemsForEmeraldsOffer(BWGItems.TINY_LILY_PADS.get(), 1, 2, 5, 1, 0.05f));
Expand All @@ -103,8 +103,6 @@ public static void makeWanderingTrades() {
level1Items.add(createItemsForEmeraldsOffer(BWGBlocks.GREEN_MUSHROOM.get(), 1, 1, 12, 1, 0.05f));
level1Items.add(createItemsForEmeraldsOffer(BWGBlocks.WOOD_BLEWIT.get(), 1, 1, 12, 1, 0.05f));
WANDERING_TRADER_TRADES.put(1, level1Items);
WANDERING_TRADER_TRADES.put(2, ImmutableList.of(
createItemsForEmeraldsOffer(BWGItems.MAN_O_WAR_BUCKET.get(), 5, 1, 4, 1, 0.05f)));
}

private static MerchantOffer createEmeraldForItemsOffer(ItemLike item, int cost, int maxUses, int villagerXp) {
Expand Down

0 comments on commit 07b8c55

Please sign in to comment.