Skip to content

Commit

Permalink
fix Garlic and Laurel Cherry drop rate
Browse files Browse the repository at this point in the history
  • Loading branch information
luxtracon committed Oct 23, 2024
1 parent f54abdc commit fa83978
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions LOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
Fixes

- fix Garlic drop rate
- fix Laurel Cherry drop rate

Updates

- update Icaria cake variants to support placing Candles on them – candle cakes can be lit and extinguished in different ways
- update Troughs to support filling them with a Powder Snow Bucket and emptying them using a Bucket
- update Onion, Physalis, Spelt and Strawberries to be harvested and planted by Villagers

Additions

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@
{
"chances": [
0.05,
0.006666667,
0.008333334,
0.01
0.06666667,
0.083333336,
0.1
],
"condition": "minecraft:table_bonus",
"enchantment": "minecraft:fortune"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
{
"chances": [
0.05,
0.006666667,
0.008333334,
0.01
0.06666667,
0.083333336,
0.1
],
"condition": "minecraft:table_bonus",
"enchantment": "minecraft:fortune"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
@ParametersAreNonnullByDefault

public class IcariaBlockLoot extends BlockLootSubProvider {
public static final float[] CHERRY_CHANCES = new float[]{0.05F, 0.006666666666F, 0.008333333333F, 0.01F};
public static final float[] GARLIC_CHANCES = new float[]{0.05F, 0.006666666666F, 0.008333333333F, 0.01F};
public static final float[] CHERRY_CHANCES = new float[]{0.05F, 0.06666666666F, 0.08333333333F, 0.1F};
public static final float[] GARLIC_CHANCES = new float[]{0.05F, 0.06666666666F, 0.08333333333F, 0.1F};
public static final float[] SAPLING_CHANCES = new float[]{0.05F, 0.06666666666F, 0.08333333333F, 0.1F};
public static final float[] SEED_CHANCES = new float[]{0.05F, 0.06666666666F, 0.08333333333F, 0.1F};
public static final float[] STICK_CHANCES = new float[]{0.05F, 0.06666666666F, 0.08333333333F, 0.1F};
Expand Down

0 comments on commit fa83978

Please sign in to comment.