Skip to content

Commit

Permalink
increased chance for overcast columns to be incomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
NewJumper committed Jan 31, 2024
1 parent 684386e commit 8b2244b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ public boolean place(FeaturePlaceContext<NoneFeatureConfiguration> pContext) {

int amberLength = (int) (columnHeight * 0.35f);
int gapSize = 0;
boolean incomplete = random.nextFloat() < 0.3f;
boolean incomplete = random.nextFloat() < 0.333f;
if(amberLength > 9) gapSize = BiasedToBottomInt.of(2, amberLength - 7).sample(random);
int gapStart = (amberLength - gapSize) / 2;
int gapPlacement = 0;
Expand Down

0 comments on commit 8b2244b

Please sign in to comment.