diff --git a/src/main/java/com/majruszs_difficulty/items/GiantSeedItem.java b/src/main/java/com/majruszs_difficulty/items/GiantSeedItem.java index 13b16b6d4..464134e11 100644 --- a/src/main/java/com/majruszs_difficulty/items/GiantSeedItem.java +++ b/src/main/java/com/majruszs_difficulty/items/GiantSeedItem.java @@ -29,7 +29,7 @@ public GiantSeedItem() { String dropComment = "Chance for Giant Seed to drop from harvesting."; String chanceComment = "Chance for double loot when harvesting crops."; String alwaysComment = "Should Giant Seed drop even though player already has one in inventory?"; - this.dropChance = new DoubleConfig( "drop_chance", dropComment, false, 0.005, 0.0, 1.0 ); + this.dropChance = new DoubleConfig( "drop_chance", dropComment, false, 0.001, 0.0, 1.0 ); this.chance = new GameStateDoubleConfig( "Chance", chanceComment, 0.25, 0.4, 0.55, 0.0, 1.0 ); this.alwaysDrops = new AvailabilityConfig( "always_drops", alwaysComment, false, true ); diff --git a/src/main/java/com/majruszs_difficulty/items/LuckyRockItem.java b/src/main/java/com/majruszs_difficulty/items/LuckyRockItem.java index fd8241300..298f8928a 100644 --- a/src/main/java/com/majruszs_difficulty/items/LuckyRockItem.java +++ b/src/main/java/com/majruszs_difficulty/items/LuckyRockItem.java @@ -39,7 +39,7 @@ public LuckyRockItem() { String dropComment = "Chance for Lucky Rock to drop from mining."; String chanceComment = "Chance for extra loot when mining."; - this.dropChance = new DoubleConfig( "drop_chance", dropComment, false, 0.002, 0.0, 1.0 ); + this.dropChance = new DoubleConfig( "drop_chance", dropComment, false, 0.0002, 0.0, 1.0 ); this.chance = new GameStateDoubleConfig( "Chance", chanceComment, 0.03, 0.045, 0.06, 0.0, 1.0 ); this.group.addConfigs( this.dropChance, this.chance );