mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-17 21:33:49 -07:00
recover from converter issue FIXES BUKKIT-890
This commit is contained in:
@@ -242,7 +242,7 @@ public class Chunk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void h(int i, int j, int k) {
|
private void h(int i, int j, int k) {
|
||||||
int l = this.heightMap[k << 4 | i];
|
int l = this.heightMap[k << 4 | i] & 0xFF; // CraftBukkit
|
||||||
int i1 = l;
|
int i1 = l;
|
||||||
|
|
||||||
if (j > l) {
|
if (j > l) {
|
||||||
|
Reference in New Issue
Block a user