mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 03:25:15 +01:00
recover from converter issue FIXES BUKKIT-890
This commit is contained in:
parent
ec35500c63
commit
2d5263bfe5
@ -242,7 +242,7 @@ public class Chunk {
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
if (j > l) {
|
||||
|
Loading…
Reference in New Issue
Block a user