mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-25 03:55:35 +01:00
Fixes #373
This commit is contained in:
parent
08586dc022
commit
a8e18b885f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user