From 99fa3f403eb23b82a422b53ad4fd9704f186460f Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Wed, 9 Feb 2022 14:04:22 +0000 Subject: [PATCH] min gen height is set in PlotArea --- .../com/plotsquared/core/generator/ClassicPlotWorld.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java index 32660f147..63d7afd02 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java @@ -25,7 +25,6 @@ */ package com.plotsquared.core.generator; -import com.plotsquared.core.PlotSquared; import com.plotsquared.core.configuration.ConfigurationNode; import com.plotsquared.core.configuration.ConfigurationSection; import com.plotsquared.core.configuration.ConfigurationUtil; @@ -47,7 +46,6 @@ public abstract class ClassicPlotWorld extends SquarePlotWorld { public int ROAD_HEIGHT = 62; public int PLOT_HEIGHT = 62; public int WALL_HEIGHT = 62; - public int MIN_GEN_HEIGHT = PlotSquared.platform().versionMinHeight(); public BlockBucket MAIN_BLOCK = new BlockBucket(BlockTypes.STONE); public BlockBucket TOP_BLOCK = new BlockBucket(BlockTypes.GRASS_BLOCK); public BlockBucket WALL_BLOCK = new BlockBucket(BlockTypes.STONE_SLAB); @@ -116,9 +114,6 @@ public abstract class ClassicPlotWorld extends SquarePlotWorld { new ConfigurationNode("wall.height", this.WALL_HEIGHT, TranslatableCaption.of("setup.wall_height"), ConfigurationUtil.INTEGER ), - new ConfigurationNode("world.min_gen_height", this.MIN_GEN_HEIGHT, TranslatableCaption.of("setup.min_gen_height"), - ConfigurationUtil.INTEGER - ), new ConfigurationNode("plot.bedrock", this.PLOT_BEDROCK, TranslatableCaption.of("setup.bedrock_boolean"), ConfigurationUtil.BOOLEAN )}; @@ -132,7 +127,6 @@ public abstract class ClassicPlotWorld extends SquarePlotWorld { public void loadConfiguration(ConfigurationSection config) { super.loadConfiguration(config); this.PLOT_BEDROCK = config.getBoolean("plot.bedrock"); - this.MIN_GEN_HEIGHT = Math.max(getMinGenHeight(), config.getInt("world.min_gen_height")); this.PLOT_HEIGHT = Math.min(getMaxGenHeight(), config.getInt("plot.height")); this.MAIN_BLOCK = new BlockBucket(config.getString("plot.filling")); this.TOP_BLOCK = new BlockBucket(config.getString("plot.floor"));