mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-06 09:33:45 +01:00
Merge pull request #1599 from Gabscap/fix-min_height
Fix world.min_height setting
This commit is contained in:
commit
7ee67c8b41
@ -238,7 +238,7 @@ public abstract class PlotArea {
|
|||||||
this.PLOT_CHAT = config.getBoolean("chat.enabled");
|
this.PLOT_CHAT = config.getBoolean("chat.enabled");
|
||||||
this.WORLD_BORDER = config.getBoolean("world.border");
|
this.WORLD_BORDER = config.getBoolean("world.border");
|
||||||
this.MAX_BUILD_HEIGHT = config.getInt("world.max_height");
|
this.MAX_BUILD_HEIGHT = config.getInt("world.max_height");
|
||||||
this.MIN_BUILD_HEIGHT = config.getInt("min.max_height");
|
this.MIN_BUILD_HEIGHT = config.getInt("world.min_height");
|
||||||
|
|
||||||
switch (config.getString("world.gamemode").toLowerCase()) {
|
switch (config.getString("world.gamemode").toLowerCase()) {
|
||||||
case "survival":
|
case "survival":
|
||||||
|
Loading…
Reference in New Issue
Block a user