mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 04:33:56 -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) {
|
||||
int l = this.heightMap[k << 4 | i];
|
||||
int l = this.heightMap[k << 4 | i] & 0xFF; // CraftBukkit
|
||||
int i1 = l;
|
||||
|
||||
if (j > l) {
|
||||
|
Reference in New Issue
Block a user