Skip to content

Commit

Permalink
Use correct chances for Mineshafts; fixes toolbox4minecraft#527.
Browse files Browse the repository at this point in the history
  • Loading branch information
moulins committed Feb 11, 2021
1 parent 0cfda14 commit 2ece511
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public static VersionFeatures.Builder builder(WorldOptions worldOptions, Minecra
).since(RecognisedVersion._1_7_2,
VersionFeature.fixed(features -> new MineshaftAlgorithm_ChanceBased(getWorldSeed(features), 0.004D, true))
).since(RecognisedVersion._18w06a,
VersionFeature.fixed(features -> new MineshaftAlgorithm_ChanceBased(getWorldSeed(features), 0.01D, false))
VersionFeature.fixed(features -> new MineshaftAlgorithm_ChanceBased(getWorldSeed(features), 0.004D, false))
).construct())
.with(FeatureKey.MINESHAFT_PRODUCER, VersionFeature.<WorldIconProducer<Void>>builder()
.init(new NoopProducer<>())
Expand Down

0 comments on commit 2ece511

Please sign in to comment.