Skip to content

Commit

Permalink
fix: World height problem
Browse files Browse the repository at this point in the history
* MIN_WORLD_HEIGHT has always been throwing an exception to whatever plot is lover than y=5
  • Loading branch information
tintinkung committed Apr 8, 2024
1 parent 208b744 commit c5eb6c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
public class PlotWorld implements IWorld {
public static final int PLOT_SIZE = 150;
public static final int MAX_WORLD_HEIGHT = 256;
public static final int MIN_WORLD_HEIGHT = 5;
public static final int MIN_WORLD_HEIGHT = -69;

private final MultiverseCore mvCore = PlotSystem.DependencyManager.getMultiverseCore();
private final String worldName;
Expand Down

0 comments on commit c5eb6c5

Please sign in to comment.