[Fix] Make sure Biome-Sizes are in Chunks not Blocks when written (quiqueck/BetterEnd#80)
This commit is contained in:
parent
1de5ed5ecc
commit
dfb1d34bb9
1 changed files with 4 additions and 4 deletions
|
@ -211,10 +211,10 @@ public class WorldSetupScreen extends LayoutScreen {
|
|||
: BCLEndBiomeSourceConfig.EndBiomeGeneratorType.VANILLA,
|
||||
generateEndVoid.isChecked(),
|
||||
(int) Math.pow(innerRadius.getValue() * 16, 2),
|
||||
centerBiomeSize.getValue(),
|
||||
voidBiomeSize.getValue(),
|
||||
landBiomeSize.getValue(),
|
||||
barrensBiomeSize.getValue()
|
||||
centerBiomeSize.getValue() * 16,
|
||||
voidBiomeSize.getValue() * 16,
|
||||
landBiomeSize.getValue() * 16,
|
||||
barrensBiomeSize.getValue() * 16
|
||||
);
|
||||
|
||||
ChunkGenerator endGenerator = betterxDimensions.get(LevelStem.END);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue