Merge pull request #1836 from PhanaticD/patch-1

nukkit world height is 256
This commit is contained in:
Jesse Boyd 2018-01-10 16:45:52 +11:00 committed by GitHub
commit 57ae3945d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -512,7 +512,7 @@ public final class NukkitMain extends PluginBase implements Listener, IPlotMain
return new HybridPlotManager() { return new HybridPlotManager() {
@Override @Override
public int getWorldHeight() { public int getWorldHeight() {
return 127; return 255;
} }
}; };
} }