Skip to content

Commit

Permalink
Changed chances for Giant Seed and Lucky Rock
Browse files Browse the repository at this point in the history
  • Loading branch information
Majrusz committed May 20, 2021
1 parent a60832b commit 6d6cdb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit 6d6cdb4

Please sign in to comment.