Skip to content

Commit

Permalink
fix: semi-colonthree:3
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jan 5, 2025
1 parent 989fa14 commit c2a1ee9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private BlockState calculateOther(RandomSource random, WorldGenLevel level, Bloc
int index = random.nextInt(length);
return this.entries.get(index).calculate(random, level, pos);
}
return Blocks.AIR.defaultBlockState()
return Blocks.AIR.defaultBlockState();
}

public record Entry(ExtendableStateList list, Optional<Map<ResourceKey<Biome>, SimpleWeightedRandomList<BlockState>>> byBiome, Optional<SimpleWeightedRandomList<BlockState>> fallback) {
Expand Down

0 comments on commit c2a1ee9

Please sign in to comment.