This commit is contained in:
Jesse Boyd 2017-01-03 08:00:50 +11:00
parent 08586dc022
commit a8e18b885f
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -231,7 +231,7 @@ public class AsyncWorld extends DelegateFaweQueue implements World, HasFaweQueue
@Override
@Deprecated
public int getBlockTypeIdAt(int x, int y, int z) {
return queue.getCombinedId4Data(x, y, z, 0) >> 4;
return queue.getCombinedId4Data(x, y & 0xFF, z, 0) >> 4;
}
@Override